aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJavier Jardón <javier.jardon@codethink.co.uk>2011-09-07 17:21:15 +0100
committerJavier Jardón <javier.jardon@codethink.co.uk>2011-09-07 17:21:15 +0100
commit2fb46855d00f3e0215bf1160d29672728ebccd94 (patch)
tree5df79fa41b88a2a057511787880e3e717f64c68b /src
parent1c9c7772c2d4f2cf3108d833b9a1fe2113fd33a6 (diff)
downloadayatana-indicator-power-2fb46855d00f3e0215bf1160d29672728ebccd94.tar.gz
ayatana-indicator-power-2fb46855d00f3e0215bf1160d29672728ebccd94.tar.bz2
ayatana-indicator-power-2fb46855d00f3e0215bf1160d29672728ebccd94.zip
indicator-power.c: Add padding between the icon and the text in the menu items
Diffstat (limited to 'src')
-rw-r--r--src/indicator-power.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/indicator-power.c b/src/indicator-power.c
index cf30051..800ac5a 100644
--- a/src/indicator-power.c
+++ b/src/indicator-power.c
@@ -409,7 +409,7 @@ menu_add_device (GtkMenu *menu,
item = gtk_image_menu_item_new ();
grid = gtk_grid_new ();
- gtk_grid_set_row_spacing (GTK_GRID (grid), 6);
+ gtk_grid_set_column_spacing (GTK_GRID (grid), 6);
gtk_grid_attach (GTK_GRID (grid), icon, 0, 0, 1, 1);
details_label = gtk_label_new (details);
gtk_grid_attach_next_to (GTK_GRID (grid), details_label, icon, GTK_POS_RIGHT, 1, 1);