evince r2853 - in trunk: . shell



Author: wbolster
Date: Thu Jan 24 15:06:34 2008
New Revision: 2853
URL: http://svn.gnome.org/viewvc/evince?rev=2853&view=rev

Log:
2008-01-24  Wouter Bolsterlee  <wbolster svn gnome org>

	* shell/ev-window.c:

	Use top/up/bottom/down arrows instead of
	first/left/last/right in the toolbar and menu actions.
	This fixes issues with RTL languages and is visually
	consistent with the page view. Fixes bug #170081.


Modified:
   trunk/ChangeLog
   trunk/NEWS
   trunk/shell/ev-window.c

Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS	(original)
+++ trunk/NEWS	Thu Jan 24 15:06:34 2008
@@ -21,6 +21,7 @@
 	  Ingmarsson, Nickolay V. Shmyrev)
     * Add support for page transitions (#458460, Carlos Garnacho)
     * Override document restrictions by default (#382700, Wouter Bolsterlee)
+    * Use up/down arrows instead of left/right (#170081, Wouter Bolsterlee)
 
 Bug fixes:
 

Modified: trunk/shell/ev-window.c
==============================================================================
--- trunk/shell/ev-window.c	(original)
+++ trunk/shell/ev-window.c	Thu Jan 24 15:06:34 2008
@@ -4414,16 +4414,16 @@
 	  G_CALLBACK (ev_window_cmd_view_autoscroll) },
 
         /* Go menu */
-        { "GoPreviousPage", GTK_STOCK_GO_BACK, N_("_Previous Page"), "<control>Page_Up",
+        { "GoPreviousPage", GTK_STOCK_GO_UP, N_("_Previous Page"), "<control>Page_Up",
           N_("Go to the previous page"),
           G_CALLBACK (ev_window_cmd_go_previous_page) },
-        { "GoNextPage", GTK_STOCK_GO_FORWARD, N_("_Next Page"), "<control>Page_Down",
+        { "GoNextPage", GTK_STOCK_GO_DOWN, N_("_Next Page"), "<control>Page_Down",
           N_("Go to the next page"),
           G_CALLBACK (ev_window_cmd_go_next_page) },
-        { "GoFirstPage", GTK_STOCK_GOTO_FIRST, N_("_First Page"), "<control>Home",
+        { "GoFirstPage", GTK_STOCK_GOTO_TOP, N_("_First Page"), "<control>Home",
           N_("Go to the first page"),
           G_CALLBACK (ev_window_cmd_go_first_page) },
-        { "GoLastPage", GTK_STOCK_GOTO_LAST, N_("_Last Page"), "<control>End",
+        { "GoLastPage", GTK_STOCK_GOTO_BOTTOM, N_("_Last Page"), "<control>End",
           N_("Go to the last page"),
           G_CALLBACK (ev_window_cmd_go_last_page) },
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]