Skip to content

Commit 147963e

Browse files
author
stani
committed
fix browse nautilus
git-svn-id: svn://svn.berlios.de/python/spe/trunk/_spe@347 be77ae6e-66fb-0310-8b80-9b5aebdb08cc
1 parent 17e114d commit 147963e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Parent.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
####Constants-------------------------------------------------------------------
2828
DEFAULT = "<default>"
2929
FIREFOX = '/usr/bin/firefox'
30-
NAUTILUS = '/usr/bin/nautilus --no-desktop'
30+
NAUTILUS = '/usr/bin/nautilus'
3131
DOLPHIN = '/usr/bin/dolphin'
3232
KONQUEROR = '/usr/bin/konqueror'
3333
THUNAR = '/usr/bin/thunar'
@@ -722,7 +722,7 @@ def browse_folder(self):
722722
if os.path.exists(THUNAR):
723723
os.system('%s "%s" &'%(THUNAR,path))
724724
elif os.path.exists(NAUTILUS):
725-
os.system('%s "%s" &'%(NAUTILUS,path))
725+
os.system('%s --no-desktop "%s" &'%(NAUTILUS,path))
726726
elif os.path.exists(DOLPHIN):
727727
os.system('%s "%s" &'%(DOLPHIN,path))
728728
elif os.path.exists(KONQUEROR):

0 commit comments

Comments
 (0)