diff options
author | David Barth <david.barth@canonical.com> | 2010-07-29 17:43:43 +0200 |
---|---|---|
committer | David Barth <david.barth@canonical.com> | 2010-07-29 17:43:43 +0200 |
commit | 29d8a891747905a2ec7c5f05f0a9df11fb45e764 (patch) | |
tree | 6de1daedd93d11ec39dde2ed1468eafe57969186 /src | |
parent | 59b9d6fe4abecc1d986c73d077c0994fccae37e7 (diff) | |
download | ayatana-indicator-messages-29d8a891747905a2ec7c5f05f0a9df11fb45e764.tar.gz ayatana-indicator-messages-29d8a891747905a2ec7c5f05f0a9df11fb45e764.tar.bz2 ayatana-indicator-messages-29d8a891747905a2ec7c5f05f0a9df11fb45e764.zip |
better aspect ratio for the triangle
Diffstat (limited to 'src')
-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 8aa64de..dc10516 100644 --- a/src/indicator-messages.c +++ b/src/indicator-messages.c @@ -305,7 +305,7 @@ application_triangle_draw_cb (GtkWidget *widget, GdkEventExpose *event, gpointer /* set arrow position / dimensions */ arrow_width = (int) ((double)widget->allocation.height * 0.25f); - arrow_height = (int) ((double)widget->allocation.height * 0.60f); + arrow_height = (int) ((double)widget->allocation.height * 0.50f); x = widget->allocation.x; y = widget->allocation.y + widget->allocation.height/2.0 - (double)arrow_height/2.0; |