[Goodies-commits] r7110 - in gigolo/trunk: . src

Enrico Troeger enrico at xfce.org
Sat Apr 4 18:54:54 CEST 2009


Author: enrico
Date: 2009-04-04 16:54:54 +0000 (Sat, 04 Apr 2009)
New Revision: 7110

Modified:
   gigolo/trunk/ChangeLog
   gigolo/trunk/src/window.c
Log:
Move the view mode options back directly into the View menu.

Modified: gigolo/trunk/ChangeLog
===================================================================
--- gigolo/trunk/ChangeLog	2009-04-04 11:59:47 UTC (rev 7109)
+++ gigolo/trunk/ChangeLog	2009-04-04 16:54:54 UTC (rev 7110)
@@ -1,3 +1,9 @@
+2009-04-04  Enrico Tröger  <enrico(at)xfce(dot)org>
+
+ * src/window.c:
+   Move the view mode options back directly into the View menu.
+
+
 2009-04-01  Enrico Tröger  <enrico(at)xfce(dot)org>
 
  * src/window.c:

Modified: gigolo/trunk/src/window.c
===================================================================
--- gigolo/trunk/src/window.c	2009-04-04 11:59:47 UTC (rev 7109)
+++ gigolo/trunk/src/window.c	2009-04-04 16:54:54 UTC (rev 7110)
@@ -1127,10 +1127,8 @@
 				"<menuitem action='ShowPanel'/>"
 				"<menuitem action='ShowInSystray'/>"
 				"<separator/>"
-				"<menu action='ConnectionList'>"
-					"<menuitem action='ViewDetailed'/>"
-					"<menuitem action='ViewSymbols'/>"
-				"</menu>"
+				"<menuitem action='ViewDetailed'/>"
+				"<menuitem action='ViewSymbols'/>"
 			"</menu>"
 			"<menu action='Actions'>"
 				"<menuitem action='Connect'/>"
@@ -1183,7 +1181,6 @@
 		{ "Edit", NULL, N_("_Edit"), NULL, NULL, NULL },
 		{ "Actions", NULL, N_("_Actions"), NULL, NULL, NULL },
 		{ "View", NULL, N_("_View"), NULL, NULL, NULL },
-		{ "ConnectionList", NULL, N_("_Connection List Mode"), NULL, NULL, NULL },
 		{ "Help", NULL, N_("_Help"), NULL, NULL, NULL },
 		{ "Preferences", GTK_STOCK_PREFERENCES,
 			NULL, "<Ctrl>p", NULL, G_CALLBACK(action_preferences_cb) },
@@ -1217,8 +1214,8 @@
 	const guint toggle_entries_n = G_N_ELEMENTS(toggle_entries);
 
 	const GtkRadioActionEntry radio_entries[] = {
-		{ "ViewDetailed", NULL, N_("_Symbols"), NULL, NULL, 0 },
-		{ "ViewSymbols", NULL, N_("_Detailed List"), NULL, NULL, 1 },
+		{ "ViewDetailed", NULL, N_("View as _Symbols"), NULL, NULL, 0 },
+		{ "ViewSymbols", NULL, N_("View as _Detailed List"), NULL, NULL, 1 },
 	};
 	const guint radio_entries_n = G_N_ELEMENTS(radio_entries);
 




More information about the Goodies-commits mailing list