Skip to content

Commit

Permalink
Allow unforced plugins to be checkable again
Browse files Browse the repository at this point in the history
  • Loading branch information
Silarn committed Sep 16, 2023
1 parent dff79a6 commit f2a784e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pluginlist.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit f2a784e

Please sign in to comment.