Fix browsing right after opening a file directly

This commit is contained in:
2021-11-22 12:41:53 +01:00
parent a719147bf3
commit 97109b1e58

View File

@@ -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;