summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeremy Rimpo <jeremy.rimpo@servermonkey.com>2023-09-16 03:21:18 -0500
committerJeremy Rimpo <jeremy.rimpo@servermonkey.com>2023-09-16 03:21:18 -0500
commitf2a784ed70ef75954a4b9ba5b317794532116619 (patch)
treedcb66f7386b8348be54a692e09d520d4fe5d0503 /src
parentdff79a6cc01185e2b2f6500ad867e1fa7473a9fc (diff)
Allow unforced plugins to be checkable again
Diffstat (limited to 'src')
-rw-r--r--src/pluginlist.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pluginlist.cpp b/src/pluginlist.cpp
index a50f242c..efa51ac7 100644
--- a/src/pluginlist.cpp
+++ b/src/pluginlist.cpp
@@ -1544,7 +1544,7 @@ Qt::ItemFlags PluginList::flags(const QModelIndex& modelIndex) const
if (modelIndex.isValid()) {
if (!m_ESPs[index].forceEnabled && !m_ESPs[index].forceDisabled) {
- result |= Qt::ItemIsDragEnabled;
+ result |= Qt::ItemIsUserCheckable | Qt::ItemIsDragEnabled;
}
if (modelIndex.column() == COL_PRIORITY) {
result |= Qt::ItemIsEditable;