aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSulfurNitride <SulfurNitride@users.noreply.github.com>2026-03-31 16:09:34 -0500
committerSulfurNitride <SulfurNitride@users.noreply.github.com>2026-03-31 16:09:34 -0500
commite92d166ce97a9335f0e16526b40dc5dc456c361c (patch)
tree6d0d025d3c440164b65baa546c3114a58cd66be8 /src
parent50d5566021badb77582da7fe501ba1902a8786ab (diff)
Enable multi-select in downloads tab
The downloadView widget was missing selectionMode and selectionBehavior properties, defaulting to SingleSelection. All other list views in the UI already had ExtendedSelection set. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'src')
-rw-r--r--src/src/mainwindow.ui6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/src/mainwindow.ui b/src/src/mainwindow.ui
index 581918f..caeda51 100644
--- a/src/src/mainwindow.ui
+++ b/src/src/mainwindow.ui
@@ -1421,6 +1421,12 @@
<property name="alternatingRowColors">
<bool>true</bool>
</property>
+ <property name="selectionMode">
+ <enum>QAbstractItemView::ExtendedSelection</enum>
+ </property>
+ <property name="selectionBehavior">
+ <enum>QAbstractItemView::SelectRows</enum>
+ </property>
<property name="verticalScrollMode">
<enum>QAbstractItemView::ScrollPerPixel</enum>
</property>