aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBilal Akhtar <bilalakhtar@ubuntu.com>2010-10-01 15:47:09 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-10-01 16:41:59 +0800
commit25d8783e9f0a72dcd2210b9f4ec0dbc7994140a6 (patch)
tree1f225372897311e80aef1a07b96a0001efc72ba2
parent381be5d52f5410939dce528a6a3beda9b70b231c (diff)
downloadgsoc2013-empathy-25d8783e9f0a72dcd2210b9f4ec0dbc7994140a6.tar
gsoc2013-empathy-25d8783e9f0a72dcd2210b9f4ec0dbc7994140a6.tar.gz
gsoc2013-empathy-25d8783e9f0a72dcd2210b9f4ec0dbc7994140a6.tar.bz2
gsoc2013-empathy-25d8783e9f0a72dcd2210b9f4ec0dbc7994140a6.tar.lz
gsoc2013-empathy-25d8783e9f0a72dcd2210b9f4ec0dbc7994140a6.tar.xz
gsoc2013-empathy-25d8783e9f0a72dcd2210b9f4ec0dbc7994140a6.tar.zst
gsoc2013-empathy-25d8783e9f0a72dcd2210b9f4ec0dbc7994140a6.zip
Move the 'Clear' menu option in the chat window right-click context menu to the last place. (#629544)
-rw-r--r--libempathy-gtk/empathy-chat-text-view.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-chat-text-view.c b/libempathy-gtk/empathy-chat-text-view.c
index c05b92fb9..5b6d5727b 100644
--- a/libempathy-gtk/empathy-chat-text-view.c
+++ b/libempathy-gtk/empathy-chat-text-view.c
@@ -274,11 +274,11 @@ chat_text_view_populate_popup (EmpathyChatTextView *view,
/* Clear menu item */
if (gtk_text_buffer_get_char_count (priv->buffer) > 0) {
item = gtk_separator_menu_item_new ();
- gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
+ gtk_menu_shell_append (GTK_MENU_SHELL (menu), item);
gtk_widget_show (item);
item = gtk_image_menu_item_new_from_stock (GTK_STOCK_CLEAR, NULL);
- gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
+ gtk_menu_shell_append (GTK_MENU_SHELL (menu), item);
gtk_widget_show (item);
g_signal_connect_swapped (item, "activate",