From dea812e69d02f444e906ea28204b206b666a72f7 Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Sat, 7 Mar 2015 16:56:51 +0000 Subject: fixed some bugs git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@4765 90c681e8-e032-0410-971d-27865f9a5e38 --- src/qmmpui/columnmanager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/qmmpui/columnmanager.cpp') 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); } -- cgit v1.2.3-13-gbd6f