diff options
| author | Qudix <17361645+Qudix@users.noreply.github.com> | 2022-02-24 18:36:02 -0600 |
|---|---|---|
| committer | Qudix <17361645+Qudix@users.noreply.github.com> | 2022-02-24 18:36:02 -0600 |
| commit | 6d73f9a18a0dc3d60f15b384e8100ceac0527069 (patch) | |
| tree | 5184ee02ddc877c2ab79ecab934e1e5135ab8620 /src | |
| parent | 5b855f2e19071c542339090d8635ef9efff848ba (diff) | |
Add isMasterFlagged to pluginCount
Diffstat (limited to 'src')
| -rw-r--r-- | src/pluginlistview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pluginlistview.cpp b/src/pluginlistview.cpp index 6e0e8f93..b2d778a2 100644 --- a/src/pluginlistview.cpp +++ b/src/pluginlistview.cpp @@ -76,7 +76,7 @@ void PluginListView::updatePluginCount() activeLightMasterCount += active; activeVisibleCount += visible && active; } - else if (list->isMaster(plugin)) { + else if (list->isMaster(plugin) || list->isMasterFlagged(plugin)) { masterCount++; activeMasterCount += active; activeVisibleCount += visible && active; |
