diff options
author | Conor Curran <conor.curran@canonical.com> | 2011-08-24 12:45:58 +0100 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2011-08-24 12:45:58 +0100 |
commit | 5654480a85100da972d03729f7012c4402eb7e13 (patch) | |
tree | 197474ba16679cd9153c65b952f1f03a645f497c | |
parent | a7004c65b73ddf79a69b504a5e70227c32c75eeb (diff) | |
download | ayatana-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.c | 2 |
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);; |