diff options
-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 197d55a..c22419d 100644 --- a/src/indicator-messages.c +++ b/src/indicator-messages.c @@ -569,7 +569,7 @@ numbers_draw_cb (GtkWidget *widget, GdkEventExpose *event, gpointer data) x += (allocation.width - layout_extents.width) / 2.0; y += (allocation.height - layout_extents.height) / 2.0; - cairo_move_to (cr, round (x), round (y)); + cairo_move_to (cr, floor (x), floor (y)); pango_cairo_layout_path (cr, layout); cairo_fill (cr); |