v.licheni.net
/
stack
/
code
/
dboxswitch.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (from parent 1:
d21d77a
)
Gui showTrayprofiles showing path and not profile name, fixed
author
stack
<stack@inventati.org>
Sun, 8 Jul 2012 23:32:53 +0000
(
01:32
+0200)
committer
stack
<stack@inventati.org>
Sun, 8 Jul 2012 23:32:53 +0000
(
01:32
+0200)
gui.py
patch
|
blob
|
history
diff --git
a/gui.py
b/gui.py
index
51e058b
..
a54d423
100755
(executable)
--- a/
gui.py
+++ b/
gui.py
@@
-126,10
+126,10
@@
class Gui(QtGui.QDialog):
for pr in profiles:
#pr is a profile path
for pr in profiles:
#pr is a profile path
-
menuItem_Profile = self.menuProfiles.add
Action(pr)
+
receiver = self.activateProfile
Action(pr)
pr = os.path.basename(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
#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)
self.connect(menuItem_Profile, SIGNAL('triggered()'), receiver)
#set menu item ToolTip
menuItem_Profile.setToolTip("Activate profile: "+pr)