Fix #616: Image Position settings missing in 1.4
authorColin Clark <colin.clark@cclark.uk>
Thu, 21 Jun 2018 10:50:49 +0000 (11:50 +0100)
committerColin Clark <colin.clark@cclark.uk>
Thu, 21 Jun 2018 10:50:49 +0000 (11:50 +0100)
https://github.com/BestImageViewer/geeqie/issues/616

Image scroll settings are now on status bar. Update tool-tip and
documentation.

doc/docbook/GuideMainWindowStatusBar.xml
src/layout.c

index 343caae..76a5146 100644 (file)
@@ -1,8 +1,8 @@
 <?xml version="1.0" encoding="utf-8"?>\r
 <section id="GuideMainWindowStatusBar">\r
   <title id="titleGuideMainWindowStatusBar">Status Bar</title>\r
-  <para>The status bar contains information and details about the contents of the main window. Information displayed includes the progress of generating thumbnails, the number of files in the file list with byte size, the current file selection count including byte size, details about the currently displayed image, and the zoom setting. The current sort preference is also displayed, and can be adjusted from the status bar.</para>\r
-  <para>The status bar is comprised of five sections, from left to right these are a progress bar, sort method, file list counts, image details, and zoom setting. Each section is described below.</para>\r
+  <para>The status bar contains information and details about the contents of the main window. Information displayed includes the progress of generating thumbnails, the number of files in the file list with byte size, the current file selection count including byte size, details about the currently displayed image, and the zoom and image scroll settings. The current sort preference is also displayed, and can be adjusted from the status bar.</para>\r
+  <para>The status bar is comprised of five sections, from left to right these are a progress bar, sort method, file list counts, image details, and zoom and scroll setting. Each section is described below.</para>\r
   <para />\r
   <section id="ProgressBar">\r
     <title>Progress Bar</title>\r
     <title>Buttons</title>\r
     <para>Statusbar buttons corresponds to selected menu action.</para>\r
     <para />\r
-    <section id="Zoom">\r
-      <title>Zoom</title>\r
+    <section id="ZoomAndScroll">\r
+      <title>Zoom and Scroll</title>\r
       <para>The button label displays the current zoom ratio. A ratio of 1:1 is the image's original size. When the left number is larger the image is displayed larger than original size, when the right number is larger the image is displayed smaller.</para>\r
       <para>A tilde (~) appears within the ratio display when the zoom is set to fit the image within the display area. In this zoom mode the ratio is automatically adjusted, and the displayed ratio may not be the actual ratio because the status bar display rounds the actual value to the nearest tenth (0.1).</para>\r
       <para />\r
index 4c14cdf..f1fc5cc 100644 (file)
@@ -800,7 +800,7 @@ static void layout_status_setup(LayoutWindow *lw, GtkWidget *box, gboolean small
        gtk_widget_show(toolbar);
        gtk_box_pack_end(GTK_BOX(hbox), toolbar_frame, FALSE, FALSE, 0);
        lw->info_zoom = layout_zoom_button(lw, hbox, ZOOM_LABEL_WIDTH, TRUE);
-       gtk_widget_set_tooltip_text(GTK_WIDGET(lw->info_zoom), _("Select zoom mode"));
+       gtk_widget_set_tooltip_text(GTK_WIDGET(lw->info_zoom), _("Select zoom and scroll mode"));
        gtk_widget_show(lw->info_zoom);
 
        if (small_format)