aboutsummaryrefslogtreecommitdiff
path: root/fastiv.c
diff options
context:
space:
mode:
Diffstat (limited to 'fastiv.c')
-rw-r--r--fastiv.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fastiv.c b/fastiv.c
index 00afe42..ec40a85 100644
--- a/fastiv.c
+++ b/fastiv.c
@@ -208,7 +208,8 @@ open(const gchar *path)
// So that load_directory() itself can be used for reloading.
gchar *dirname = g_path_get_dirname(path);
- if (!g.directory || strcmp(dirname, g.directory)) {
+ if (!g.files->len /* hack to always load the directory after launch */ ||
+ !g.directory || strcmp(dirname, g.directory)) {
load_directory(dirname);
} else {
g.files_index = -1;