[Goodies-commits] r2567 - in xfce4-places-plugin/trunk: . panel-plugin

Diego Ongaro ongardie at xfce.org
Sun Mar 25 18:53:48 CEST 2007


Author: ongardie
Date: 2007-03-25 16:53:48 +0000 (Sun, 25 Mar 2007)
New Revision: 2567

Modified:
   xfce4-places-plugin/trunk/ChangeLog
   xfce4-places-plugin/trunk/panel-plugin/places.c
Log:
Fixed bug 3053 (Plugin doesn't launch thunar) by dropping "/usr/bin/"


Modified: xfce4-places-plugin/trunk/ChangeLog
===================================================================
--- xfce4-places-plugin/trunk/ChangeLog	2007-03-25 06:31:29 UTC (rev 2566)
+++ xfce4-places-plugin/trunk/ChangeLog	2007-03-25 16:53:48 UTC (rev 2567)
@@ -1,5 +1,6 @@
 2007-03-25  Diego Ongaro  ongardie at gmail.com
 
+	* Fixed bug 3053 (Plugin doesn't launch thunar) by dropping "/usr/bin/"
 	* Fixed bug 3027 (Places menu showing %20) by copying glib code
 
 2007-03-14  Diego Ongaro  ongardie at gmail.com

Modified: xfce4-places-plugin/trunk/panel-plugin/places.c
===================================================================
--- xfce4-places-plugin/trunk/panel-plugin/places.c	2007-03-25 06:31:29 UTC (rev 2566)
+++ xfce4-places-plugin/trunk/panel-plugin/places.c	2007-03-25 16:53:48 UTC (rev 2567)
@@ -271,7 +271,7 @@
 static void
 places_load_thunar(const gchar * path)
 {
-    gchar * cmd = g_strconcat("/usr/bin/thunar ", path, NULL);
+    gchar * cmd = g_strconcat("thunar ", path, NULL);
     xfce_exec(cmd, FALSE, FALSE, NULL);
     g_free(cmd);
 }




More information about the Goodies-commits mailing list