Merge pull request #591 from vishal332008/master

Small Bug in Plugins Window
This commit is contained in:
Eric Froemling 2023-06-10 09:45:06 -07:00 committed by GitHub
commit 42fbe1dd2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -338,7 +338,9 @@ class PluginWindow(bui.Window):
self._check_value_changed, availplug
),
textcolor=(
(0.8, 0.3, 0.3) if not availplug.available else (0, 1, 0)
(0.8, 0.3, 0.3) if not availplug.available else
(0, 1, 0) if active else
(0.6, 0.6, 0.6)
),
)
if plugin is not None and plugin.has_settings_ui():