summaryrefslogtreecommitdiff
path: root/client/macrodrawer.cc
diff options
context:
space:
mode:
authorLars Bisballe Jensen <larsbisballe@gmail.com>2011-10-17 11:59:07 +0200
committerLars Bisballe Jensen <larsbisballe@gmail.com>2011-10-17 11:59:07 +0200
commitf45d63c69769cffd0b7509c4b96fcdee21e41bde (patch)
tree6c1021d95fc4126e08dc374dd9ca06231e0eb3e6 /client/macrodrawer.cc
parent72f0e057dd754e6d9ca0f5e587e88c4ac59e61b2 (diff)
no need to setText on buttons
Diffstat (limited to 'client/macrodrawer.cc')
-rw-r--r--client/macrodrawer.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/macrodrawer.cc b/client/macrodrawer.cc
index 648f0a6..343d5d1 100644
--- a/client/macrodrawer.cc
+++ b/client/macrodrawer.cc
@@ -105,14 +105,14 @@ void MacroDrawer::activationChange(bool active)
// Set padlock icon on button.
if(button) {
button->setIcon(QPixmap(":icons/padlock.png"));
- button->setText("");
+ //button->setText("");
}
} else {
// Clear padlock icon on button
if(button) {
button->setIcon(QPixmap());
- button->setText("");
+ //button->setText("");
}
}