diff options
author | Pablo Barciela <[email protected]> | 2018-11-04 14:32:43 +0100 |
---|---|---|
committer | ZenWalker <[email protected]> | 2018-11-05 15:36:27 +0100 |
commit | a73abb84d55ed6757f05b28484bbe0080ee5d129 (patch) | |
tree | 6006796c001dbf8b73c882be3bdeb560a437528d /applets/notification_area | |
parent | 576488685ee8b2775f4e556c0cdc7bfda2595dd4 (diff) | |
download | mate-panel-a73abb84d55ed6757f05b28484bbe0080ee5d129.tar.bz2 mate-panel-a73abb84d55ed6757f05b28484bbe0080ee5d129.tar.xz |
notification-area-preferences-dialog.ui: avoid GtkButton:use-stock
Diffstat (limited to 'applets/notification_area')
-rw-r--r-- | applets/notification_area/notification-area-preferences-dialog.ui | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/applets/notification_area/notification-area-preferences-dialog.ui b/applets/notification_area/notification-area-preferences-dialog.ui index d4be2a0c..3dd2c7e3 100644 --- a/applets/notification_area/notification-area-preferences-dialog.ui +++ b/applets/notification_area/notification-area-preferences-dialog.ui @@ -22,7 +22,7 @@ Author: Wolfgang Ulbrich --> <interface> - <requires lib="gtk+" version="3.14"/> + <requires lib="gtk+" version="3.22"/> <!-- interface-license-type gplv2 --> <!-- interface-name mate-panel --> <!-- interface-description panel-properties-dialog --> @@ -35,6 +35,11 @@ Author: Wolfgang Ulbrich <property name="step_increment">1</property> <property name="page_increment">1</property> </object> + <object class="GtkImage" id="image1"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="icon_name">window-close</property> + </object> <object class="GtkDialog" id="notification_area_preferences_dialog"> <property name="can_focus">False</property> <property name="border_width">5</property> @@ -57,13 +62,14 @@ Author: Wolfgang Ulbrich <property name="can_focus">False</property> <child> <object class="GtkButton" id="closebutton"> - <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="receives_default">False</property> - <property name="use_stock">True</property> + <property name="image">image1</property> + <property name="use_underline">True</property> </object> <packing> <property name="expand">False</property> |