From ca51c9413b38ee4b65af7e95d5c81aecbda5aa2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Eric=20Janouch?= Date: Fri, 5 Aug 2022 08:57:13 +0200 Subject: Show parse names in Information dialog subtitles --- fiv-view.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/fiv-view.c b/fiv-view.c index d7fa796..283f0b0 100644 --- a/fiv-view.c +++ b/fiv-view.c @@ -1408,7 +1408,14 @@ info(FivView *self) gtk_window_set_default_size(GTK_WINDOW(dialog), 600, 800); gtk_widget_show_all(dialog); + // Mostly for URIs with no local path--we pipe these into ExifTool. GFile *file = g_file_new_for_uri(self->uri); + gchar *parse_name = g_file_get_parse_name(file); + gtk_header_bar_set_subtitle( + GTK_HEADER_BAR(gtk_dialog_get_header_bar(GTK_DIALOG(dialog))), + parse_name); + g_free(parse_name); + gchar *path = g_file_get_path(file); if (path) { info_spawn(dialog, path, NULL); -- cgit v1.2.3