diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2016-04-04 08:13:11 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2016-04-04 08:13:11 +0000 |
| commit | 3791e87b4ec4c9bc013a6fb6ad4756f2ffd8827b (patch) | |
| tree | eda6f35d62db3a8c212d22b4231b092bb48912ba /src | |
| parent | af32dbd850a3c6bf548d3ec4bdb82030f13aea0a (diff) | |
| download | qmmp-3791e87b4ec4c9bc013a6fb6ad4756f2ffd8827b.tar.gz qmmp-3791e87b4ec4c9bc013a6fb6ad4756f2ffd8827b.tar.bz2 qmmp-3791e87b4ec4c9bc013a6fb6ad4756f2ffd8827b.zip | |
qsui: fixed problem with minimum width (#785, #849)
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@6225 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src')
| -rw-r--r-- | src/plugins/Ui/qsui/mainwindow.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/Ui/qsui/mainwindow.cpp b/src/plugins/Ui/qsui/mainwindow.cpp index d586d47e0..644501ad8 100644 --- a/src/plugins/Ui/qsui/mainwindow.cpp +++ b/src/plugins/Ui/qsui/mainwindow.cpp @@ -129,6 +129,8 @@ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) m_statusLabel = new QLabel(this); m_ui.statusbar->addPermanentWidget(m_statusLabel, 0); m_ui.statusbar->addPermanentWidget(m_timeLabel, 1); + m_ui.statusbar->setMinimumWidth(2); + m_statusLabel->setMinimumWidth(2); //volume m_volumeSlider = new QSlider(Qt::Horizontal, this); m_volumeSlider->setFocusPolicy(Qt::NoFocus); |
