Fix no transient for warnings from reconcile dialogs.

This commit is contained in:
John Ralls
2018-01-26 14:40:53 -08:00
parent 71a2429c13
commit 4fd52725bf
2 changed files with 3 additions and 2 deletions

View File

@@ -3,7 +3,7 @@
<interface>
<requires lib="gtk+" version="3.10"/>
<object class="GtkDialog" id="reconcile_start_dialog">
<property name="visible">True</property>
<property name="visible">False</property>
<property name="can_focus">False</property>
<property name="resizable">False</property>
<property name="type_hint">dialog</property>

View File

@@ -1918,7 +1918,8 @@ recnWindowWithBalance (GtkWidget *parent, Account *account,
/* Allow resize */
gtk_window_set_resizable(GTK_WINDOW(recnData->window), TRUE);
gtk_window_set_transient_for(GTK_WINDOW(recnData->window),
GTK_WINDOW (parent));
gtk_widget_show_all(recnData->window);
gnc_reconcile_window_set_titles(recnData);