From f39ab69a415eb8817f8a68c30cd8e0a746511372 Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Sat, 9 Apr 2016 16:54:54 +0000 Subject: qsui: fixed volume slider git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@6236 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/Ui/qsui/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/plugins/Ui/qsui/mainwindow.cpp') 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())); -- cgit v1.2.3-13-gbd6f