don't mark dialogs as visible in .ui files
this causes runtime warnings about transient parent because these dialogs get mapped too early, before gtk_window_set_transient_for is called in the code. affected dialogs: find, profile manager, profile prefs
parent
2c530ab0d3
commit
a717ceb97c
|
@ -9,7 +9,6 @@
|
|||
<!-- interface-copyright MATE developers -->
|
||||
<!-- interface-authors Wolfgang Ulbrich -->
|
||||
<object class="GtkDialog" id="find-dialog">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="border_width">5</property>
|
||||
<property name="title" translatable="yes">Find</property>
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
<!-- interface-copyright MATE Developer -->
|
||||
<!-- interface-authors Wolfgang Ulbrich -->
|
||||
<object class="GtkDialog" id="profile-manager">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="border_width">5</property>
|
||||
<property name="title" translatable="yes">Profiles</property>
|
||||
|
|
|
@ -225,7 +225,6 @@ Author: Wolfgang Ulbrich
|
|||
</data>
|
||||
</object>
|
||||
<object class="GtkDialog" id="profile-editor-dialog">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="border_width">5</property>
|
||||
<property name="title" translatable="yes">Profile Editor</property>
|
||||
|
|
Loading…
Reference in New Issue