# HG changeset patch # User gqview # Date 1124138823 0 # Node ID e29c291e106b3d906f5fb444bd0255d14bfaf83b # Parent 5c9f78e1c5f501f75f83c60cf3f363350b27c0b3 Mon Aug 15 16:35:15 2005 John Ellis * view_dir_tree.c (vdtree_set_path): Do not force reading folder contents, to allow the check for a changed timestamp do it's job. * doc/10_options.html: Fix page link in docs. diff -r 5c9f78e1c5f5 -r e29c291e106b ChangeLog --- a/ChangeLog Thu Jun 16 05:26:00 2005 +0000 +++ b/ChangeLog Mon Aug 15 20:47:03 2005 +0000 @@ -1,3 +1,9 @@ +Mon Aug 15 16:35:15 2005 John Ellis + + * view_dir_tree.c (vdtree_set_path): Do not force reading folder + contents, to allow the check for a changed timestamp do it's job. + * doc/10_options.html: Fix page link in docs. + Thu Jun 16 01:21:43 2005 John Ellis * cache-loader.c (cache_loader_process): When converting Exif date diff -r 5c9f78e1c5f5 -r e29c291e106b TODO --- a/TODO Thu Jun 16 05:26:00 2005 +0000 +++ b/TODO Mon Aug 15 20:47:03 2005 +0000 @@ -89,9 +89,13 @@ > folder tree view shortcuts for expanding/collapsing leak through to the main window (+,-,*,/, etc.), figure what behavior is desired and fix this. + --- Doc updates: + + > default edit commands not described. + ------------- -d> update translations: it(x) ( ) ( ) + > update translations: fr( ) it(x) pl( ) zh_TW( ) > document recent additions/changes: > Added 'Fast jpeg thumbnailing'. diff -r 5c9f78e1c5f5 -r e29c291e106b doc/10_options.html --- a/doc/10_options.html Thu Jun 16 05:26:00 2005 +0000 +++ b/doc/10_options.html Mon Aug 15 20:47:03 2005 +0000 @@ -40,7 +40,7 @@ Options

10.2 Image Options

-

10.3 Window +

10.3 Window Options

10.4 Filtering Options

@@ -93,4 +93,4 @@


- \ No newline at end of file + diff -r 5c9f78e1c5f5 -r e29c291e106b src/view_dir_tree.c --- a/src/view_dir_tree.c Thu Jun 16 05:26:00 2005 +0000 +++ b/src/view_dir_tree.c Mon Aug 15 20:47:03 2005 +0000 @@ -1292,7 +1292,7 @@ g_free(vdt->path); vdt->path = g_strdup(path); - fd = vdtree_populate_path(vdt, vdt->path, TRUE, TRUE); + fd = vdtree_populate_path(vdt, vdt->path, TRUE, FALSE); if (!fd) return FALSE;