diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-01-28 16:10:50 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-01-28 21:35:32 +0100 |
commit | b67c87134598172f782608ec53984a05d1ec92f0 (patch) | |
tree | 2c8d0ab6d4041421a1e22d21ba5db0f2e210d59f /sw/uiconfig | |
parent | 7f59313a1bd88dd142ff0b4c9b8cfc7e4beeabc7 (diff) |
gtk silence warning about parentless widget
Change-Id: I9aa4b9ba63c5a83e7e27e786e38761721977b33a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87644
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sw/uiconfig')
-rw-r--r-- | sw/uiconfig/swriter/ui/comboboxfragment.ui | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/sw/uiconfig/swriter/ui/comboboxfragment.ui b/sw/uiconfig/swriter/ui/comboboxfragment.ui index d9b9579ef0b4..5f3db90078d8 100644 --- a/sw/uiconfig/swriter/ui/comboboxfragment.ui +++ b/sw/uiconfig/swriter/ui/comboboxfragment.ui @@ -2,7 +2,19 @@ <!-- Generated with glade 3.22.1 --> <interface domain="sw"> <requires lib="gtk+" version="3.18"/> - <object class="GtkComboBoxText" id="combobox"> + <object class="GtkBox"> + <property name="visible">True</property> <property name="can_focus">False</property> + <property name="orientation">vertical</property> + <child> + <object class="GtkComboBoxText" id="combobox"> + <property name="can_focus">False</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> </object> </interface> |