diff src/filelist.c @ 79:528e3432e0c0

Thu Oct 19 07:23:37 2006 John Ellis <johne@verizon.net> * cache_maint.c, thumb_standard.[ch]: Use .thumblocal when saving local thumbnails as per the freedesktop.org thumbnail spec. * filelist.c: Add .thumblocal to list of ignored folders (those we never show user). * main.c: Fix bug in recent command line parser changes, a single folder on the command line was not processed by parse_out_relatives().
author gqview
date Thu, 19 Oct 2006 11:34:52 +0000
parents 00843150f7c8
children 847e4bc6b54c
line wrap: on
line diff
--- a/src/filelist.c	Sun Oct 15 16:39:19 2006 +0000
+++ b/src/filelist.c	Thu Oct 19 11:34:52 2006 +0000
@@ -1,6 +1,6 @@
 /*
  * GQview
- * (C) 2004 John Ellis
+ * (C) 2006 John Ellis
  *
  * Author: John Ellis
  *
@@ -15,6 +15,7 @@
 
 #include "cache.h"
 #include "rcfile.h"
+#include "thumb_standard.h"
 #include "ui_fileops.h"
 
 
@@ -707,7 +708,8 @@
 					if ((dirs) &&
 					    !(name[0] == '.' && (name[1] == '\0' || (name[1] == '.' && name[2] == '\0'))) &&
 					    strcmp(name, GQVIEW_CACHE_LOCAL_THUMB) != 0 &&
-					    strcmp(name, GQVIEW_CACHE_LOCAL_METADATA) != 0)
+					    strcmp(name, GQVIEW_CACHE_LOCAL_METADATA) != 0 &&
+					    strcmp(name, THUMB_FOLDER_LOCAL) != 0)
 						{
 						dlist = g_list_prepend(dlist, file_data_new(filepath, &ent_sbuf));
 						}