diff options
author | Colomban Wendling <[email protected]> | 2017-03-29 16:07:49 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-03-30 15:32:36 +0200 |
commit | a4f21ec70b26aae76a071bdd323e0ea0faf7bf98 (patch) | |
tree | 316e196e5ea98e8d0d521eb4742ff79da53aa494 /applets/notification_area/status-notifier/sn-item-v0.h | |
parent | 2798c330871e830ea13a5c1b035b891143a31166 (diff) | |
download | mate-panel-a4f21ec70b26aae76a071bdd323e0ea0faf7bf98.tar.bz2 mate-panel-a4f21ec70b26aae76a071bdd323e0ea0faf7bf98.tar.xz |
status-notifier: Fix handling of icon-padding style property
It should only affect the space between items, not all around, and
that padding should be part of the item itself, not be outside of it.
Diffstat (limited to 'applets/notification_area/status-notifier/sn-item-v0.h')
-rw-r--r-- | applets/notification_area/status-notifier/sn-item-v0.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/applets/notification_area/status-notifier/sn-item-v0.h b/applets/notification_area/status-notifier/sn-item-v0.h index 548905e8..1f8bd98f 100644 --- a/applets/notification_area/status-notifier/sn-item-v0.h +++ b/applets/notification_area/status-notifier/sn-item-v0.h @@ -39,6 +39,9 @@ GType sn_item_v0_get_type (void); SnItem *sn_item_v0_new (const gchar *bus_name, const gchar *object_path); +gint sn_item_v0_get_icon_padding (SnItemV0 *v0); +void sn_item_v0_set_icon_padding (SnItemV0 *v0, + gint padding); gint sn_item_v0_get_icon_size (SnItemV0 *v0); void sn_item_v0_set_icon_size (SnItemV0 *v0, gint size); |