diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-10-08 15:24:14 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-10-08 17:18:21 +0200 |
commit | c59edf5d4dd94224b586adf03b3dcdbda4d422ab (patch) | |
tree | 9ce8478c694757d81d9248c52e85d092dc769915 /svx/uiconfig/ui | |
parent | be5858089f5003db1316175941370b913d01e635 (diff) |
gtk4: set draw-as-radio as true for GtkRadioMenuItems
Change-Id: I1a49a3f44f46ed57e80fa54af0e2b6466b2a9b4f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123261
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svx/uiconfig/ui')
-rw-r--r-- | svx/uiconfig/ui/selectionmenu.ui | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/svx/uiconfig/ui/selectionmenu.ui b/svx/uiconfig/ui/selectionmenu.ui index d44fcfcc5e03..aa0989ad270a 100644 --- a/svx/uiconfig/ui/selectionmenu.ui +++ b/svx/uiconfig/ui/selectionmenu.ui @@ -1,40 +1,44 @@ <?xml version="1.0" encoding="UTF-8"?> -<!-- Generated with glade 3.20.0 --> +<!-- Generated with glade 3.38.2 --> <interface domain="svx"> <requires lib="gtk+" version="3.20"/> <object class="GtkMenu" id="menu"> <property name="visible">True</property> - <property name="can_focus">False</property> + <property name="can-focus">False</property> <child> <object class="GtkRadioMenuItem" id="standard"> <property name="visible">True</property> - <property name="can_focus">False</property> + <property name="can-focus">False</property> <property name="label" translatable="yes" context="selectionmenu|standard">Standard selection</property> - <property name="use_underline">True</property> + <property name="use-underline">True</property> + <property name="draw-as-radio">True</property> </object> </child> <child> <object class="GtkRadioMenuItem" id="extending"> <property name="visible">True</property> - <property name="can_focus">False</property> + <property name="can-focus">False</property> <property name="label" translatable="yes" context="selectionmenu|extending">Extending selection</property> - <property name="use_underline">True</property> + <property name="use-underline">True</property> + <property name="draw-as-radio">True</property> </object> </child> <child> <object class="GtkRadioMenuItem" id="adding"> <property name="visible">True</property> - <property name="can_focus">False</property> + <property name="can-focus">False</property> <property name="label" translatable="yes" context="selectionmenu|adding">Adding selection</property> - <property name="use_underline">True</property> + <property name="use-underline">True</property> + <property name="draw-as-radio">True</property> </object> </child> <child> <object class="GtkRadioMenuItem" id="block"> <property name="visible">True</property> - <property name="can_focus">False</property> + <property name="can-focus">False</property> <property name="label" translatable="yes" context="selectionmenu|block">Block selection</property> - <property name="use_underline">True</property> + <property name="use-underline">True</property> + <property name="draw-as-radio">True</property> </object> </child> </object> |