summaryrefslogtreecommitdiff
path: root/thunar/thunar-dbus-service.c
diff options
context:
space:
mode:
authorAlexander Schwinn <alexxcons@xfce.org>2018-08-14 23:03:08 +0200
committerAlexander Schwinn <alexxcons@xfce.org>2018-08-20 13:42:57 +0200
commit8dd1c609ff730e2a141c5ebd66fe42b9f72eb19f (patch)
treee075a2a3babbcf03a81a9d8c98c1418f263fa95a /thunar/thunar-dbus-service.c
parentdf543219197fc9246f61dbd02afc027e1937eed5 (diff)
downloadthunar-8dd1c609ff730e2a141c5ebd66fe42b9f72eb19f.tar.gz
Add preference to open new thunar instances as tabs, if there is an existing thunar window
(Bug #13314)
Diffstat (limited to 'thunar/thunar-dbus-service.c')
-rw-r--r--thunar/thunar-dbus-service.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/thunar/thunar-dbus-service.c b/thunar/thunar-dbus-service.c
index 258acb9a..66c104b7 100644
--- a/thunar/thunar-dbus-service.c
+++ b/thunar/thunar-dbus-service.c
@@ -462,7 +462,7 @@ thunar_dbus_service_display_folder (ThunarDBusFileManager *object,
/* popup a new window for the folder */
application = thunar_application_get ();
- thunar_application_open_window (application, file, screen, startup_id);
+ thunar_application_open_window (application, file, screen, startup_id, FALSE);
g_object_unref (G_OBJECT (application));
/* cleanup */
@@ -509,7 +509,7 @@ thunar_dbus_service_display_folder_and_select (ThunarDBusFileManager *object,
/* popup a new window for the folder */
application = thunar_application_get ();
- window = thunar_application_open_window (application, folder, screen, startup_id);
+ window = thunar_application_open_window (application, folder, screen, startup_id, FALSE);
g_object_unref (application);
/* determine the path for the filename relative to the folder */
@@ -745,7 +745,7 @@ thunar_dbus_service_display_trash (ThunarDBusTrash *object,
{
/* tell the application to display the trash bin */
application = thunar_application_get ();
- thunar_application_open_window (application, dbus_service->trash_bin, screen, startup_id);
+ thunar_application_open_window (application, dbus_service->trash_bin, screen, startup_id, FALSE);
g_object_unref (G_OBJECT (application));
/* release the screen */