diff options
author | Jason Conti <jason.conti@gmail.com> | 2011-08-29 12:32:35 -0400 |
---|---|---|
committer | Jason Conti <jason.conti@gmail.com> | 2011-08-29 12:32:35 -0400 |
commit | e6a38a23cdee64cab4aa1cbdfc2848a0a91bd8e6 (patch) | |
tree | 5982a3b4617ea66cb2bdb31ddf0dd432a461fe03 /src | |
parent | cb1da8552b56959f8f1c59a17fd4341f2aee611f (diff) | |
download | ayatana-indicator-notifications-e6a38a23cdee64cab4aa1cbdfc2848a0a91bd8e6.tar.gz ayatana-indicator-notifications-e6a38a23cdee64cab4aa1cbdfc2848a0a91bd8e6.tar.bz2 ayatana-indicator-notifications-e6a38a23cdee64cab4aa1cbdfc2848a0a91bd8e6.zip |
* Switch to gtk_menu_shell_prepend so new messages appear on top.
Diffstat (limited to 'src')
-rw-r--r-- | src/indicator-notifications.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/indicator-notifications.c b/src/indicator-notifications.c index 3d4dc56..e34973b 100644 --- a/src/indicator-notifications.c +++ b/src/indicator-notifications.c @@ -198,7 +198,7 @@ message_received_cb(DBusSpy *spy, Notification *note, gpointer user_data) GtkWidget *item = new_notification_menuitem(note); g_object_unref(note); - gtk_menu_shell_append(GTK_MENU_SHELL(self->priv->menu), item); + gtk_menu_shell_prepend(GTK_MENU_SHELL(self->priv->menu), item); if(self->priv->pixbuf_unread != NULL) { self->priv->have_unread = TRUE; |