diff options
author | Robert Antoni Buj Gelonch <[email protected]> | 2020-06-30 16:01:27 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2020-06-30 16:01:27 +0200 |
commit | d75c80047df558a76c7d276adbedf24e337f1650 (patch) | |
tree | cc0dac9dd84d9a880c7abea98b73fdb994b395cf /src/ui/properties.ui | |
parent | 1df69e9eac9a50c1c5da9d1a9779fefe2cdc1c91 (diff) | |
download | engrampa-d75c80047df558a76c7d276adbedf24e337f1650.tar.bz2 engrampa-d75c80047df558a76c7d276adbedf24e337f1650.tar.xz |
Do not use stock icons in ui files (#392)
* Do not use stock icons in ui files
Diffstat (limited to 'src/ui/properties.ui')
-rw-r--r-- | src/ui/properties.ui | 30 |
1 files changed, 22 insertions, 8 deletions
diff --git a/src/ui/properties.ui b/src/ui/properties.ui index a943061..75850c5 100644 --- a/src/ui/properties.ui +++ b/src/ui/properties.ui @@ -1,16 +1,23 @@ <?xml version="1.0" encoding="UTF-8"?> -<!-- Generated with glade 3.22.2 --> +<!-- Generated with glade 3.36.0 --> <interface> <requires lib="gtk+" version="3.22"/> + <object class="GtkImage" id="p_help_image"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="icon_name">help-browser</property> + </object> + <object class="GtkImage" id="p_ok_image"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="icon_name">window-close</property> + </object> <object class="GtkDialog" id="prop_dialog"> <property name="can_focus">False</property> <property name="border_width">5</property> <property name="window_position">center-on-parent</property> <property name="type_hint">dialog</property> <signal name="destroy" handler="on_prop_dialog_destroy" swapped="no"/> - <child type="titlebar"> - <placeholder/> - </child> <child internal-child="vbox"> <object class="GtkBox" id="dialog-vbox12"> <property name="visible">True</property> @@ -24,12 +31,14 @@ <property name="layout_style">end</property> <child> <object class="GtkButton" id="p_help_button"> - <property name="label">gtk-help</property> + <property name="label" translatable="yes">_Help</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="can_default">True</property> <property name="receives_default">False</property> - <property name="use_stock">True</property> + <property name="image">p_help_image</property> + <property name="use_underline">True</property> + <property name="always_show_image">True</property> </object> <packing> <property name="expand">False</property> @@ -40,14 +49,16 @@ </child> <child> <object class="GtkButton" id="p_ok_button"> - <property name="label">gtk-close</property> + <property name="label" translatable="yes">_Close</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="has_focus">True</property> <property name="can_default">True</property> <property name="has_default">True</property> <property name="receives_default">False</property> - <property name="use_stock">True</property> + <property name="image">p_ok_image</property> + <property name="use_underline">True</property> + <property name="always_show_image">True</property> </object> <packing> <property name="expand">False</property> @@ -308,5 +319,8 @@ <action-widget response="-11">p_help_button</action-widget> <action-widget response="-7">p_ok_button</action-widget> </action-widgets> + <child type="titlebar"> + <placeholder/> + </child> </object> </interface> |