]> www.fi.muni.cz Git - evince.git/commitdiff
Use top/up/bottom/down arrows instead of first/left/last/right in the
authorWouter Bolsterlee <wbolster@svn.gnome.org>
Thu, 24 Jan 2008 15:06:34 +0000 (15:06 +0000)
committerWouter Bolsterlee <wbolster@src.gnome.org>
Thu, 24 Jan 2008 15:06:34 +0000 (15:06 +0000)
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.

svn path=/trunk/; revision=2853

ChangeLog
NEWS
shell/ev-window.c

index 79310b0d5bbf646b3df43cc63f25c9f1c8c2ac6d..d8aea77cdd14cc490106315b704ba4f29b28effc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+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.
+
 2008-01-24  Wouter Bolsterlee  <wbolster@svn.gnome.org>
 
        * NEWS:
diff --git a/NEWS b/NEWS
index 3ea6459f012e3741d843bead1e0c91a9763fc1ab..9b819d35673c19cc0989680b202cea868f5ce508 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -21,6 +21,7 @@ New features and UI improvements:
          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:
 
index 2fbccd3842b0ca7de1aebc2f7238589b010faf99..9f9924bac7a740bae0f906ae64e8057ea248d0a9 100644 (file)
@@ -4414,16 +4414,16 @@ static const GtkActionEntry entries[] = {
          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) },