From: stack Date: Sun, 8 Jul 2012 23:32:53 +0000 (+0200) Subject: Gui showTrayprofiles showing path and not profile name, fixed X-Git-Url: https://v.licheni.net/stack/code/dboxswitch.git/commitdiff_plain/3e7de2135e7a5ea09bfc8de537eed95c3be0325c?hp=d21d77af7b9aec8d003222854815b99d866c49d7 Gui showTrayprofiles showing path and not profile name, fixed --- diff --git a/gui.py b/gui.py index 51e058b..a54d423 100755 --- a/gui.py +++ b/gui.py @@ -126,10 +126,10 @@ class Gui(QtGui.QDialog): for pr in profiles: #pr is a profile path - menuItem_Profile = self.menuProfiles.addAction(pr) + receiver = self.activateProfileAction(pr) pr = os.path.basename(pr) + menuItem_Profile = self.menuProfiles.addAction(pr) #Using lambda function to pass additional arguments to the function, in this case the path of the profile - receiver = self.activateProfileAction(pr) self.connect(menuItem_Profile, SIGNAL('triggered()'), receiver) #set menu item ToolTip menuItem_Profile.setToolTip("Activate profile: "+pr)