aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConor Curran <conor.curran@canonical.com>2011-08-24 12:45:58 +0100
committerConor Curran <conor.curran@canonical.com>2011-08-24 12:45:58 +0100
commit5654480a85100da972d03729f7012c4402eb7e13 (patch)
tree197474ba16679cd9153c65b952f1f03a645f497c
parenta7004c65b73ddf79a69b504a5e70227c32c75eeb (diff)
downloadayatana-indicator-session-5654480a85100da972d03729f7012c4402eb7e13.tar.gz
ayatana-indicator-session-5654480a85100da972d03729f7012c4402eb7e13.tar.bz2
ayatana-indicator-session-5654480a85100da972d03729f7012c4402eb7e13.zip
fix the dot alignment in the gtk2s user widget
-rw-r--r--src/user-widget.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/user-widget.c b/src/user-widget.c
index 1530967..937a9eb 100644
--- a/src/user-widget.c
+++ b/src/user-widget.c
@@ -302,7 +302,7 @@ user_widget_primitive_draw_cb (GtkWidget *widget,
gtk_widget_get_allocation (widget, &allocation);
x = allocation.x + 13;
- y = allocation.height / 2;
+ y = allocation.y + allocation.height/2;
cairo_arc (cr, x, y, 3.0, 0.0, 2 * G_PI);;