diff options
author | Clément Masci <> | 2018-09-14 22:30:23 +0200 |
---|---|---|
committer | Clément Masci <> | 2018-09-14 22:30:23 +0200 |
commit | fd1f45f308e418d1c1b44b968ce83f77e4f8a689 (patch) | |
tree | 11e704e97f42b2f9359a2a655911ae6100491312 /src/caja-freedesktop-dbus.c | |
parent | 3619f72800e135973f3a2bf615fe7827ab06273d (diff) | |
download | caja-fd1f45f308e418d1c1b44b968ce83f77e4f8a689.tar.bz2 caja-fd1f45f308e418d1c1b44b968ce83f77e4f8a689.tar.xz |
add option to open multiple uri in tabs at startup
Diffstat (limited to 'src/caja-freedesktop-dbus.c')
-rw-r--r-- | src/caja-freedesktop-dbus.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/caja-freedesktop-dbus.c b/src/caja-freedesktop-dbus.c index 5047a58c..28544f63 100644 --- a/src/caja-freedesktop-dbus.c +++ b/src/caja-freedesktop-dbus.c @@ -75,10 +75,10 @@ skeleton_handle_show_items_cb (CajaFreedesktopFileManager1 *object, parent = g_file_get_parent (file); if (parent != NULL) { - caja_application_open_location (application, parent, file, startup_id); + caja_application_open_location (application, parent, file, startup_id, 0); g_object_unref (parent); } else { - caja_application_open_location (application, file, NULL, startup_id); + caja_application_open_location (application, file, NULL, startup_id, 0); } g_object_unref (file); @@ -105,7 +105,7 @@ skeleton_handle_show_folders_cb (CajaFreedesktopFileManager1 *object, file = g_file_new_for_uri (uris[i]); - caja_application_open_location (application, file, NULL, startup_id); + caja_application_open_location (application, file, NULL, startup_id, 0); g_object_unref (file); } |