changeset 2458:46817a8b4fbd

Minor code amendments Ensure the shortcuts (bookmarks) pane is visible on first run Remove unused defines Document search on Exif date
author Colin Clark <cclark@mcb.net>
date Wed, 22 Mar 2017 10:13:03 +0000
parents 58f993045468
children 81ba6aa8467c
files doc/docbook/GuideImageSearchSearch.xml src/options.c src/pixbuf-renderer.h
diffstat 3 files changed, 8 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/doc/docbook/GuideImageSearchSearch.xml	Tue Mar 21 17:28:55 2017 +0000
+++ b/doc/docbook/GuideImageSearchSearch.xml	Wed Mar 22 10:13:03 2017 +0000
@@ -101,7 +101,11 @@
               </guiicon>
             </guibutton>
           </code>
-          button displays a pop up calendar to enter the date
+          button displays a pop up calendar to enter the date.
+          <para />
+          The
+          <emphasis role="strong">Exif date</emphasis>
+          checkbox permits searches to be made on the exif date of images. If an image does not have an exif date, it will default to 01 January 1970.
         </listitem>
       </varlistentry>
       <varlistentry>
@@ -210,4 +214,4 @@
     <para>Drag and drop can be initiated with the primary or middle mouse buttons. Dragging a file that is selected will include all selected files in the drag. Dragging a file that is not selected will first change the selection to the dragged file, and clear the previous selection.</para>
     <para />
   </section>
-</section>
+</section>
--- a/src/options.c	Tue Mar 21 17:28:55 2017 +0000
+++ b/src/options.c	Wed Mar 22 10:13:03 2017 +0000
@@ -237,6 +237,7 @@
 	options->main_window.w = 720;
 	options->main_window.x = 0;
 	options->main_window.y = 0;
+	options->folder_window.vdivider_pos = 100;
 	options->order = g_strdup("123");
 	options->show_directory_date = FALSE;
 	options->show_marks = FALSE;
--- a/src/pixbuf-renderer.h	Tue Mar 21 17:28:55 2017 +0000
+++ b/src/pixbuf-renderer.h	Wed Mar 22 10:13:03 2017 +0000
@@ -29,9 +29,7 @@
 #define IS_PIXBUF_RENDERER_CLASS(klass)	(G_TYPE_CHECK_CLASS_TYPE((klass), TYPE_PIXBUF_RENDERER))
 #define PIXBUF_RENDERER_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS((obj), TYPE_PIXBUF_RENDERER, PixbufRendererClass))
 
-/* alpha channel checkerboard background (same as gimp) */
-#define PR_ALPHA_CHECK1 0x00999999
-#define PR_ALPHA_CHECK2 0x00666666
+/* alpha channel checkerboard (same as gimp) */
 #define PR_ALPHA_CHECK_SIZE 16
 /* when scaling image to below this size, use nearest pixel for scaling
  * (below about 4, the other scale types become slow generating their conversion tables)