diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2015-12-05 18:11:25 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2015-12-05 18:11:25 +0000 |
| commit | 543a0d05b31831c9ae581e96f6a45fcd0004147c (patch) | |
| tree | 6a8e977eba07e10da3ac86f334748ad6a2385b02 | |
| parent | fca62f77de4508729beb875d36959c2d8bf6fee8 (diff) | |
| download | qmmp-543a0d05b31831c9ae581e96f6a45fcd0004147c.tar.gz qmmp-543a0d05b31831c9ae581e96f6a45fcd0004147c.tar.bz2 qmmp-543a0d05b31831c9ae581e96f6a45fcd0004147c.zip | |
skinned: disable "Anti-aliasing" action on normal size
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@5815 90c681e8-e032-0410-971d-27865f9a5e38
| -rw-r--r-- | src/plugins/Ui/skinned/actionmanager.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/Ui/skinned/actionmanager.cpp b/src/plugins/Ui/skinned/actionmanager.cpp index 2d0c95d83..c1b0607af 100644 --- a/src/plugins/Ui/skinned/actionmanager.cpp +++ b/src/plugins/Ui/skinned/actionmanager.cpp @@ -57,6 +57,8 @@ ActionManager::ActionManager(QObject *parent) : m_actions[WM_STICKY] = createAction2(tr("Put on All Workspaces"), "sticky", ""); m_actions[WM_DOUBLE_SIZE] = createAction2(tr("Double Size"), "double_size", tr("Meta+D")); m_actions[WM_ANTIALIASING] = createAction2(tr("Anti-aliasing"), "anti_aliasing", ""); + connect(m_actions[WM_DOUBLE_SIZE], SIGNAL(toggled(bool)), m_actions[WM_ANTIALIASING], SLOT(setEnabled(bool))); + m_actions[WM_ANTIALIASING]->setEnabled(false); //volume m_actions[VOL_ENC] = createAction(tr("Volume &+"), "vol_enc", tr("0")); m_actions[VOL_DEC] = createAction(tr("Volume &-"), "vol_dec", tr("9")); |
