From f2a784ed70ef75954a4b9ba5b317794532116619 Mon Sep 17 00:00:00 2001 From: Jeremy Rimpo Date: Sat, 16 Sep 2023 03:21:18 -0500 Subject: [PATCH] Allow unforced plugins to be checkable again --- src/pluginlist.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pluginlist.cpp b/src/pluginlist.cpp index a50f242c2..efa51ac70 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;