Fix adding images to the list of recent files

This commit is contained in:
Přemysl Eric Janouch 2021-11-16 14:02:26 +01:00
parent c4d58cb9ad
commit 6eec8e7360
Signed by: p
GPG Key ID: A0420B94F92B9493
1 changed files with 6 additions and 1 deletions

View File

@ -153,7 +153,12 @@ open(const gchar *path)
return; return;
} }
gchar *uri = g_filename_to_uri(path, NULL, NULL);
if (uri) {
gtk_recent_manager_add_item(gtk_recent_manager_get_default(), path); gtk_recent_manager_add_item(gtk_recent_manager_get_default(), path);
g_free(uri);
}
gtk_window_set_title(GTK_WINDOW(g.window), path); gtk_window_set_title(GTK_WINDOW(g.window), path);
gtk_stack_set_visible_child(GTK_STACK(g.stack), g.view_scroller); gtk_stack_set_visible_child(GTK_STACK(g.stack), g.view_scroller);