diff --git a/plugin_manager.py b/plugin_manager.py index e5de46a..68d77c2 100644 --- a/plugin_manager.py +++ b/plugin_manager.py @@ -817,7 +817,7 @@ class PluginWindow(popup.PopupWindow): play_sound() b_text_color = (0.75, 0.7, 0.8) s = 1.25 if _uiscale is ba.UIScale.SMALL else 1.39 if ba.UIScale.MEDIUM else 1.67 - width = 360 * s + width = 400 * s height = 120 + 100 * s color = (1, 1, 1) text_scale = 0.7 * s @@ -933,8 +933,8 @@ class PluginWindow(popup.PopupWindow): ba.containerwidget(edit=self._root_widget, on_cancel_call=self._ok) - open_pos_x = (350 if _uiscale is ba.UIScale.SMALL else - 410 if _uiscale is ba.UIScale.MEDIUM else 400) + open_pos_x = (390 if _uiscale is ba.UIScale.SMALL else + 450 if _uiscale is ba.UIScale.MEDIUM else 440) open_pos_y = (125 if _uiscale is ba.UIScale.SMALL else 135 if _uiscale is ba.UIScale.MEDIUM else 140) open_button = ba.buttonwidget(parent=self._root_widget, @@ -970,8 +970,8 @@ class PluginWindow(popup.PopupWindow): text=text, action=lambda: ba.open_url(self.plugin.info["external_url"]), ) - open_pos_x = (400 if _uiscale is ba.UIScale.SMALL else - 460 if _uiscale is ba.UIScale.MEDIUM else 450) + open_pos_x = (440 if _uiscale is ba.UIScale.SMALL else + 500 if _uiscale is ba.UIScale.MEDIUM else 490) open_pos_y = (100 if _uiscale is ba.UIScale.SMALL else 110 if _uiscale is ba.UIScale.MEDIUM else 120) open_button = ba.buttonwidget(parent=self._root_widget,