mirror of
https://github.com/bombsquad-community/plugin-manager.git
synced 2026-08-15 13:03:08 +00:00
fix_moreWindow_scale
This commit is contained in:
parent
712d1276a4
commit
f0b36c742b
3 changed files with 8 additions and 2 deletions
|
|
@ -1,5 +1,9 @@
|
|||
## Plugin Manager (dd-mm-yyyy)
|
||||
|
||||
### 1.1.6 (26-01-2026)
|
||||
|
||||
- Fix UI scaling for more window
|
||||
|
||||
### 1.1.5 (26-01-2026)
|
||||
|
||||
- Various UI bugfixes and improvements
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
"plugin_manager_url": "https://github.com/bombsquad-community/plugin-manager/{content_type}/{tag}/plugin_manager.py",
|
||||
"versions": {
|
||||
"1.1.6": null,
|
||||
"1.1.5": {
|
||||
"api_version": 9,
|
||||
"commit_sha": "dd1a605",
|
||||
|
|
|
|||
|
|
@ -64,9 +64,10 @@ def _regexp_friendly_class_name_shortcut(string): return string.replace(".", "\\
|
|||
|
||||
|
||||
def _by_scale(a, b, c):
|
||||
u = _uiscale()
|
||||
return (
|
||||
a if _uiscale is babase.UIScale.SMALL else
|
||||
b if _uiscale is babase.UIScale.MEDIUM else
|
||||
a if u is babase.UIScale.SMALL else
|
||||
b if u is babase.UIScale.MEDIUM else
|
||||
c
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue