aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Ui/qsui/mainwindow.cpp
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2016-04-09 16:54:54 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2016-04-09 16:54:54 +0000
commitf39ab69a415eb8817f8a68c30cd8e0a746511372 (patch)
tree1e24dac2e4ac2c0727d6df1be9ecbdb0dbcb8851 /src/plugins/Ui/qsui/mainwindow.cpp
parentb45d86f28414aa755ae5d723c2d6620927d03b6f (diff)
downloadqmmp-f39ab69a415eb8817f8a68c30cd8e0a746511372.tar.gz
qmmp-f39ab69a415eb8817f8a68c30cd8e0a746511372.tar.bz2
qmmp-f39ab69a415eb8817f8a68c30cd8e0a746511372.zip
qsui: fixed volume slider
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@6236 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Ui/qsui/mainwindow.cpp')
-rw-r--r--src/plugins/Ui/qsui/mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/Ui/qsui/mainwindow.cpp b/src/plugins/Ui/qsui/mainwindow.cpp
index 88ee306cd..5f78d93a5 100644
--- a/src/plugins/Ui/qsui/mainwindow.cpp
+++ b/src/plugins/Ui/qsui/mainwindow.cpp
@@ -137,7 +137,7 @@ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent)
m_volumeSlider->setFixedWidth(100);
m_volumeSlider->setRange(0,100);
SET_ACTION(ActionManager::VOL_MUTE, m_core, SLOT(setMuted(bool)));
- connect(m_volumeSlider, SIGNAL(valueChanged(int)), m_core, SLOT(setVolume(int)));
+ connect(m_volumeSlider, SIGNAL(sliderMoved(int)), m_core, SLOT(setVolume(int)));
connect(m_core, SIGNAL(volumeChanged(int)), m_volumeSlider, SLOT(setValue(int)));
connect(m_core, SIGNAL(volumeChanged(int)), SLOT(updateVolumeIcon()));
connect(m_core, SIGNAL(mutedChanged(bool)), SLOT(updateVolumeIcon()));