Custom places now understand ~ sign and listen to changes in path

This commit is contained in:
Clement Lefebvre 2010-05-09 11:51:41 +01:00
parent 8ce2e2aa1e
commit cf6b1e7a53
4 changed files with 15 additions and 7 deletions

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
mintmenu (4.9.9) isadora; urgency=low
* Custom places: now understands ~ signs and listens to changes in the path
-- Clement Lefebvre <root@linuxmint.com> Sun, 09 May 2010 11:51:00 +0000
mintmenu (4.9.8) isadora; urgency=low
* Removed suggestion "search in portal"

View File

@ -4,7 +4,8 @@
<!-- interface-naming-policy toplevel-contextual -->
<widget class="GtkWindow" id="mainWindow">
<property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
<property name="window_position">center-on-parent</property>
<property name="border_width">6</property>
<property name="window_position">center</property>
<property name="destroy_with_parent">True</property>
<child>
<widget class="GtkVBox" id="vbox1">
@ -16,10 +17,7 @@
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
<property name="border_width">6</property>
<property name="tab_border">0</property>
<property name="tab_hborder">0</property>
<property name="tab_vborder">0</property>
<property name="border_width">4</property>
<child>
<widget class="GtkFrame" id="frame18">
<property name="visible">True</property>
@ -1067,6 +1065,7 @@
<property name="can_focus">True</property>
<property name="hscrollbar_policy">automatic</property>
<property name="vscrollbar_policy">automatic</property>
<property name="shadow_type">etched-in</property>
<child>
<widget class="GtkTreeView" id="customplacestree">
<property name="visible">True</property>

View File

@ -55,6 +55,7 @@ class pluginclass( object ):
self.gconf.notifyAdd( "show_network", self.RegenPlugin )
self.gconf.notifyAdd( "show_trash", self.RegenPlugin )
self.gconf.notifyAdd( "custom_names", self.RegenPlugin )
self.gconf.notifyAdd( "custom_paths", self.RegenPlugin )
self.gconf.notifyAdd( "allowScrollbar", self.RegenPlugin )
self.gconf.notifyAdd( "height", self.changePluginSize )
self.gconf.notifyAdd( "width", self.changePluginSize )
@ -192,7 +193,9 @@ class pluginclass( object ):
def do_custom_places( self ):
for index in range( len(self.custompaths) ):
command = ( "nautilus \"" + self.custompaths[index] + "\"")
path = self.custompaths[index]
path = path.replace("~", home)
command = ( "nautilus \"" + path + "\"")
currentbutton = easyButton( "folder", self.iconsize, [self.customnames[index]], -1, -1 )
currentbutton.connect( "clicked", self.ButtonClicked, command )
currentbutton.show()