Skip to content

Commit c2e5084

Browse files
committed
Fix plugin pages showing execute when path set but not enabled
1 parent 94f6626 commit c2e5084

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

joystick_diagrams/ui/plugins_page.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ def update_plugin_count_statistics(self):
165165
# Calculate Ready Plugins
166166
self.plugins_ready = 0
167167
for plugin in self.get_plugin_data_for_tree():
168-
if plugin.ready:
168+
if plugin.ready and plugin.enabled:
169169
self.plugins_ready = self.plugins_ready + 1
170170
self.statistics_change.emit()
171171

0 commit comments

Comments
 (0)