[Xfce4-commits] <xfce4-mount-plugin:master> no need to use startup notification

Landry Breuil noreply at xfce.org
Wed Apr 11 14:30:01 CEST 2012


Updating branch refs/heads/master
         to a8bb3443c0838c0c69b376febde8c872d1c761a4 (commit)
       from 563fcc41319a0624c765d575e9f9c90d474aceae (commit)

commit a8bb3443c0838c0c69b376febde8c872d1c761a4
Author: Landry Breuil <landry at xfce.org>
Date:   Tue Apr 10 22:00:29 2012 +0200

    no need to use startup notification

 panel-plugin/devices.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/panel-plugin/devices.c b/panel-plugin/devices.c
index a6b35fa..43f2de2 100644
--- a/panel-plugin/devices.c
+++ b/panel-plugin/devices.c
@@ -263,7 +263,7 @@ disk_mount (t_disk *pdisk, char *on_mount_cmd, char* mount_command, gboolean eje
         else
             cmd = g_strconcat (cmd, " '", NULL);
 
-        val = xfce_spawn_command_line_on_screen(gdk_screen_get_default(), cmd, FALSE, TRUE, &error);
+        val = xfce_spawn_command_line_on_screen(gdk_screen_get_default(), cmd, FALSE, FALSE, &error);
         DBG("cmd: '%s', returned %d \n", cmd, val);
         if (val)
             xfce_dialog_show_error (NULL, error, _("Mount Plugin: Error executing command."));
@@ -306,7 +306,7 @@ disk_umount (t_disk *pdisk, char* umount_command, gboolean synchronous, gboolean
         else
             tmp = g_strconcat (cmd, " '", NULL);
 
-        val = xfce_spawn_command_line_on_screen(gdk_screen_get_default(), tmp, FALSE, TRUE, &error);
+        val = xfce_spawn_command_line_on_screen(gdk_screen_get_default(), tmp, FALSE, FALSE, &error);
         DBG("cmd: '%s', returned %d \n", tmp, val);
 
         if  (val) {


More information about the Xfce4-commits mailing list