diff options
| author | Al <gabriel.cortesi@outlook.com> | 2019-01-12 14:35:09 +0100 |
|---|---|---|
| committer | Al <gabriel.cortesi@outlook.com> | 2019-01-12 14:35:09 +0100 |
| commit | ea3df2e9bdb02f44f17acc2f389fb6280d0dc98b (patch) | |
| tree | 3ee0549bd9f63c33d70f671ea00d0240fbc769ac | |
| parent | 37e1009d9472a86c228eea0347d4306a75c3fd65 (diff) | |
Some more drag and drop related changes, still no fix though.
| -rw-r--r-- | src/mainwindow.ui | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/mainwindow.ui b/src/mainwindow.ui index 4f5400dd..83b99486 100644 --- a/src/mainwindow.ui +++ b/src/mainwindow.ui @@ -1322,11 +1322,14 @@ p, li { white-space: pre-wrap; } <property name="whatsThis">
<string>This is a list of mods you downloaded from Nexus. Double click one to install it. You can also drag an archive into here.</string>
</property>
- <property name="editTriggers">
- <set>QAbstractItemView::NoEditTriggers</set>
+ <property name="verticalScrollBarPolicy">
+ <enum>Qt::ScrollBarAlwaysOn</enum>
+ </property>
+ <property name="dragEnabled">
+ <bool>true</bool>
</property>
<property name="dragDropMode">
- <enum>QAbstractItemView::DropOnly</enum>
+ <enum>QAbstractItemView::DragDrop</enum>
</property>
<property name="defaultDropAction">
<enum>Qt::MoveAction</enum>
@@ -1334,6 +1337,9 @@ p, li { white-space: pre-wrap; } <property name="alternatingRowColors">
<bool>true</bool>
</property>
+ <property name="verticalScrollMode">
+ <enum>QAbstractItemView::ScrollPerPixel</enum>
+ </property>
<property name="indentation">
<number>0</number>
</property>
|
