Gui showTrayprofiles showing path and not profile name, fixed
[stack/code/dboxswitch.git] / gui.py
diff --git a/gui.py b/gui.py
index 56d0802..a54d423 100755 (executable)
--- a/gui.py
+++ b/gui.py
@@ -125,11 +125,11 @@ class Gui(QtGui.QDialog):
             profiles = self.profileManager.getProfilesList()
 
             for pr in profiles:
+                #pr is a profile path
+                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)