Fix for error caused when disable button was missing

This commit is contained in:
Loup-Garou911XD 2024-04-22 19:29:31 +05:30
parent 8d1a55f76d
commit 6e3dbf08ae
3 changed files with 12 additions and 5 deletions

View file

@ -1,5 +1,9 @@
## Plugin Manager (dd-mm-yyyy)
### 1.0.16 (22-04-2024)
- Fix for error caused when disable button was missing
### 1.0.15 (22-04-2024)
- Plugins can now be viewed in A-Z and Z-A order.

View file

@ -1,6 +1,7 @@
{
"plugin_manager_url": "https://github.com/bombsquad-community/plugin-manager/{content_type}/{tag}/plugin_manager.py",
"versions": {
"1.0.16": null,
"1.0.15": {
"api_version": 8,
"commit_sha": "fd170eb",

View file

@ -31,7 +31,7 @@ from datetime import datetime
from threading import Thread
import logging
PLUGIN_MANAGER_VERSION = "1.0.15"
PLUGIN_MANAGER_VERSION = "1.0.16"
REPOSITORY_URL = "https://github.com/bombsquad-community/plugin-manager"
# Current tag can be changed to "staging" or any other branch in
# plugin manager repo for testing purpose.
@ -1095,7 +1095,7 @@ class PluginWindow(popup.PopupWindow):
button1_action = self.install
if to_draw_button1:
button1 = bui.buttonwidget(parent=self._root_widget,
selected_btn = bui.buttonwidget(parent=self._root_widget,
position=(
width * (
0.1 if self.plugin.is_installed and has_update else
@ -1110,7 +1110,7 @@ class PluginWindow(popup.PopupWindow):
label=button1_label)
if self.plugin.is_installed:
bui.buttonwidget(parent=self._root_widget,
selected_btn = bui.buttonwidget(parent=self._root_widget,
position=(width * (0.4 if has_update else 0.55), pos),
size=button_size,
on_activate_call=button2_action,
@ -1121,7 +1121,7 @@ class PluginWindow(popup.PopupWindow):
label=button2_label)
if has_update:
button1 = bui.buttonwidget(parent=self._root_widget,
selected_btn = bui.buttonwidget(parent=self._root_widget,
position=(width * 0.7, pos),
size=button_size,
on_activate_call=button3_action,
@ -1131,9 +1131,11 @@ class PluginWindow(popup.PopupWindow):
button_type='square',
text_scale=1,
label=button3_label)
bui.containerwidget(edit=self._root_widget,
on_cancel_call=self._cancel,
selected_child=button1)
selected_child=selected_btn)
open_pos_x = (390 if _uiscale is babase.UIScale.SMALL else
450 if _uiscale is babase.UIScale.MEDIUM else 440)