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-host-v0.c | |
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-host-v0.c')
-rw-r--r-- | applets/notification_area/status-notifier/sn-host-v0.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applets/notification_area/status-notifier/sn-host-v0.c b/applets/notification_area/status-notifier/sn-host-v0.c index eeab0254..9915b1e3 100644 --- a/applets/notification_area/status-notifier/sn-host-v0.c +++ b/applets/notification_area/status-notifier/sn-host-v0.c @@ -125,7 +125,7 @@ add_registered_item (SnHostV0 *v0, item = sn_item_v0_new (bus_name, object_path); g_object_ref_sink (item); - g_object_bind_property (v0, "icon-padding", item, "margin", + g_object_bind_property (v0, "icon-padding", item, "icon-padding", G_BINDING_DEFAULT | G_BINDING_SYNC_CREATE); g_object_bind_property (v0, "icon-size", item, "icon-size", G_BINDING_DEFAULT | G_BINDING_SYNC_CREATE); |