diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2017-10-26 18:45:08 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2017-10-26 18:45:08 +0000 |
| commit | 3c37f74539cf870d563c44b92fc82852b5c46012 (patch) | |
| tree | eb25ed884c7861eb232c05c637db9fa07f0aa5b4 /src/plugins/Ui/qsui/mainwindow.cpp | |
| parent | b3d32cd1275310aa7c536c2703abdd3b2f237b9d (diff) | |
| download | qmmp-3c37f74539cf870d563c44b92fc82852b5c46012.tar.gz qmmp-3c37f74539cf870d563c44b92fc82852b5c46012.tar.bz2 qmmp-3c37f74539cf870d563c44b92fc82852b5c46012.zip | |
fixed memory leaks and other errors
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@7649 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Ui/qsui/mainwindow.cpp')
| -rw-r--r-- | src/plugins/Ui/qsui/mainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/Ui/qsui/mainwindow.cpp b/src/plugins/Ui/qsui/mainwindow.cpp index 56f5622ca..bdc7b81c8 100644 --- a/src/plugins/Ui/qsui/mainwindow.cpp +++ b/src/plugins/Ui/qsui/mainwindow.cpp @@ -343,7 +343,7 @@ void MainWindow::updateVolumeIcon() iconName = "audio-volume-muted"; else if(maxVol < 30) iconName = "audio-volume-low"; - else if(maxVol >= 30 && maxVol < 60) + else if(maxVol < 60) iconName = "audio-volume-medium"; ACTION(ActionManager::VOL_MUTE)->setIcon(QIcon::fromTheme(iconName, QIcon(QString(":/qsui/") + iconName + ".png"))); |
