diff options
author | Lars Bisballe Jensen <larsbisballe@gmail.com> | 2011-10-17 11:59:07 +0200 |
---|---|---|
committer | Lars Bisballe Jensen <larsbisballe@gmail.com> | 2011-10-17 11:59:07 +0200 |
commit | f45d63c69769cffd0b7509c4b96fcdee21e41bde (patch) | |
tree | 6c1021d95fc4126e08dc374dd9ca06231e0eb3e6 | |
parent | 72f0e057dd754e6d9ca0f5e587e88c4ac59e61b2 (diff) |
no need to setText on buttons
-rw-r--r-- | client/macrodrawer.cc | 4 |
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(""); } } |