|
From: <cn...@us...> - 2023-07-28 04:49:50
|
Revision: 1413
http://sourceforge.net/p/seq/svn/1413
Author: cn187
Date: 2023-07-28 04:49:49 +0000 (Fri, 28 Jul 2023)
Log Message:
-----------
Allow re-ordering of first column
Modified Paths:
--------------
showeq/branches/cn187_devel/src/seqlistview.cpp
Modified: showeq/branches/cn187_devel/src/seqlistview.cpp
===================================================================
--- showeq/branches/cn187_devel/src/seqlistview.cpp 2023-07-28 03:54:40 UTC (rev 1412)
+++ showeq/branches/cn187_devel/src/seqlistview.cpp 2023-07-28 04:49:49 UTC (rev 1413)
@@ -53,6 +53,9 @@
// don't stretch the last column, otherwise we can't hide it
header()->setStretchLastSection(false);
+#if (QT_VERSION >= QT_VERSION_CHECK(5,11,0))
+ header()->setFirstSectionMovable(true);
+#endif
connect(header(), SIGNAL(sortIndicatorChanged(int, Qt::SortOrder)), this, SLOT(setSorting(int, Qt::SortOrder)));
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|