[empathy] Move the 'Clear' menu option in the chat window right-click context menu to the last place. (#629544
- From: Guillaume Desmottes <gdesmott src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [empathy] Move the 'Clear' menu option in the chat window right-click context menu to the last place. (#629544
- Date: Fri, 1 Oct 2010 08:44:41 +0000 (UTC)
commit 25d8783e9f0a72dcd2210b9f4ec0dbc7994140a6
Author: Bilal Akhtar <bilalakhtar ubuntu com>
Date: Fri Oct 1 10:47:09 2010 +0300
Move the 'Clear' menu option in the chat window right-click context menu to the last place. (#629544)
libempathy-gtk/empathy-chat-text-view.c | 4 ++--
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 c05b92f..5b6d572 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",
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]