mirror of
https://github.com/Geronymos/desktop-icons
synced 2024-11-24 19:15:49 +01:00
Missed a variable
This commit is contained in:
parent
b9be0581e4
commit
341492d15d
4
dicons.c
4
dicons.c
|
@ -171,6 +171,8 @@ static GtkListStore *create_desktop_list(void)
|
|||
static void launch_default_or_app_for_file(GFile *desktop_file) {
|
||||
GAppInfo *app;
|
||||
GKeyFile *keyfile = g_key_file_new ();
|
||||
char* file_uri;
|
||||
|
||||
if (g_key_file_load_from_file (keyfile, g_file_get_path(desktop_file), G_KEY_FILE_NONE, NULL))
|
||||
{
|
||||
app = (GAppInfo*)g_desktop_app_info_new_from_keyfile (keyfile);
|
||||
|
@ -182,7 +184,7 @@ static void launch_default_or_app_for_file(GFile *desktop_file) {
|
|||
}
|
||||
}
|
||||
// Not a .desktop, falling back to xdg open
|
||||
char* file_uri = g_file_get_uri(desktop_file);
|
||||
file_uri = g_file_get_uri(desktop_file);
|
||||
g_app_info_launch_default_for_uri(file_uri, 0, 0);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue