summaryrefslogtreecommitdiff
path: root/src/caja-freedesktop-dbus.c
diff options
context:
space:
mode:
authorClément Masci <>2018-09-14 22:30:23 +0200
committerraveit65 <[email protected]>2018-09-17 09:28:48 +0200
commit6a31ce65e4213d6069e5eb515640233cd27c3937 (patch)
treeb982839d912c1ff13ccbe06e00f1bfb2ab6b445d /src/caja-freedesktop-dbus.c
parentfb9a3cfdd0eeac12044ed2f317f51193bf44b6e0 (diff)
downloadcaja-6a31ce65e4213d6069e5eb515640233cd27c3937.tar.bz2
caja-6a31ce65e4213d6069e5eb515640233cd27c3937.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.c6
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);
}