diff options
author | Lars Uebernickel <lars.uebernickel@canonical.com> | 2012-02-10 08:38:52 +0100 |
---|---|---|
committer | Lars Uebernickel <lars.uebernickel@canonical.com> | 2012-02-10 08:38:52 +0100 |
commit | 981c01a3442a6a0a459ac313e29486b67aa1aac7 (patch) | |
tree | cea84d638bf8891b2769f964aa577148cdca54e7 | |
parent | 54b82d7275a9c37a815c7ed7840798c6492e9b81 (diff) | |
download | ayatana-indicator-messages-981c01a3442a6a0a459ac313e29486b67aa1aac7.tar.gz ayatana-indicator-messages-981c01a3442a6a0a459ac313e29486b67aa1aac7.tar.bz2 ayatana-indicator-messages-981c01a3442a6a0a459ac313e29486b67aa1aac7.zip |
Fix left margin of indicator items
-rw-r--r-- | src/indicator-messages.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/indicator-messages.c b/src/indicator-messages.c index 3059e1f..f5f2fe0 100644 --- a/src/indicator-messages.c +++ b/src/indicator-messages.c @@ -711,7 +711,7 @@ new_indicator_item (DbusmenuMenuitem * newitem, DbusmenuMenuitem * parent, Dbusm gtk_icon_size_lookup(GTK_ICON_SIZE_MENU, &width, &height); gtk_widget_set_size_request(GTK_WIDGET (gmi), -1, height + 4); - gtk_widget_set_margin_left (hbox, width + padding); + gtk_widget_set_margin_left (hbox, width + 2 * padding); GdkPixbuf * pixbuf = dbusmenu_menuitem_property_get_image(newitem, INDICATOR_MENUITEM_PROP_ICON); if (pixbuf != NULL) { |