Skip to content

Commit

Permalink
Fix plugin pages showing execute when path set but not enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
Rexeh committed Feb 29, 2024
1 parent 94f6626 commit c2e5084
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion joystick_diagrams/ui/plugins_page.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def update_plugin_count_statistics(self):
# Calculate Ready Plugins
self.plugins_ready = 0
for plugin in self.get_plugin_data_for_tree():
if plugin.ready:
if plugin.ready and plugin.enabled:
self.plugins_ready = self.plugins_ready + 1
self.statistics_change.emit()

Expand Down

0 comments on commit c2e5084

Please sign in to comment.