diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2015-03-07 16:56:51 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2015-03-07 16:56:51 +0000 |
| commit | dea812e69d02f444e906ea28204b206b666a72f7 (patch) | |
| tree | 45fe8ee90312aad70271752529caaabc04902f30 /src/qmmpui/columnmanager.cpp | |
| parent | a0683b8a7dfa9fec33c14d5269cae3f9277f18e5 (diff) | |
| download | qmmp-dea812e69d02f444e906ea28204b206b666a72f7.tar.gz qmmp-dea812e69d02f444e906ea28204b206b666a72f7.tar.bz2 qmmp-dea812e69d02f444e906ea28204b206b666a72f7.zip | |
fixed some bugs
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@4765 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/qmmpui/columnmanager.cpp')
| -rw-r--r-- | src/qmmpui/columnmanager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qmmpui/columnmanager.cpp b/src/qmmpui/columnmanager.cpp index 5788aaf59..331a8445c 100644 --- a/src/qmmpui/columnmanager.cpp +++ b/src/qmmpui/columnmanager.cpp @@ -82,7 +82,7 @@ void ColumnManager::resize(int index, int size) if(index < 0 || index >= m_columns.size()) qWarning("ColumnManager: index is out of range"); - m_columns[index].size = size; + m_columns[index].size = qMax(size, 30); //sync(); emit resized(index); } |
