X-Git-Url: https://v.licheni.net/stack/code/dboxswitch.git/blobdiff_plain/2c94e3c217ecc734c7af00cacccf9451a4f7dedb..2d03d47d5b90add99fbfdbfdd96653f85d053731:/gui.py diff --git a/gui.py b/gui.py index 56d0802..51e058b 100755 --- a/gui.py +++ b/gui.py @@ -125,9 +125,9 @@ class Gui(QtGui.QDialog): profiles = self.profileManager.getProfilesList() for pr in profiles: - pr = os.path.basename(pr) + #pr is a profile path menuItem_Profile = self.menuProfiles.addAction(pr) - + pr = os.path.basename(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)