diff --git a/plugins/utilities/colorscheme.py b/plugins/utilities/colorscheme.py index 6e42717..bd4e4c5 100644 --- a/plugins/utilities/colorscheme.py +++ b/plugins/utilities/colorscheme.py @@ -445,5 +445,8 @@ class Main(ba.Plugin): def on_app_running(self): load_plugin() - def on_plugin_manager_prompt(self): + def has_settings_ui(self): + return True + + def show_settings_ui(self, source_widget): launch_colorscheme_selection_window() diff --git a/plugins/utilities/mood_light.py b/plugins/utilities/mood_light.py index 225df54..cb94021 100644 --- a/plugins/utilities/mood_light.py +++ b/plugins/utilities/mood_light.py @@ -287,7 +287,7 @@ class moodlight(ba.Plugin): def on_app_running(self): _ba.show_progress_bar() - def on_plugin_manager_prompt(self): + def show_settings_ui(self, source_widget): SettingWindow() def has_settings_ui(self): diff --git a/plugins/utilities/share_replay.py b/plugins/utilities/share_replay.py index 1a39493..9909816 100644 --- a/plugins/utilities/share_replay.py +++ b/plugins/utilities/share_replay.py @@ -262,6 +262,3 @@ class Loup(ba.Plugin): def show_settings_ui(self, button): SettingWindow() - - def on_plugin_manager_prompt(self): - SettingWindow()