Отключение компактного меню по умолчанию
Сборка мода / build (push) Successful in 1m42s

This commit is contained in:
2026-01-01 20:45:04 +03:00
parent 01260d7c16
commit 8faa67258f
2 changed files with 4 additions and 9 deletions
+3 -8
View File
@@ -1,10 +1,5 @@
{ {
"enabled": true, "enabled": true,
"items": [ "default_compact": false,
"home", "items": ["home", "discover", "feed", "bookmarks", "profile"]
"discover", }
"feed",
"bookmarks",
"profile"
]
}
+1 -1
View File
@@ -20,7 +20,7 @@ from utils.smali_parser import get_smali_lines, save_smali_lines, find_smali_lin
class Patch(PatchTemplate): class Patch(PatchTemplate):
priority: int = Field(frozen=True, exclude=True, default=0) priority: int = Field(frozen=True, exclude=True, default=0)
default_compact: bool = Field(True, description="Компактный вид по умолчанию") default_compact: bool = Field(False, description="Компактный вид по умолчанию")
items: List[str] = Field( items: List[str] = Field(
["home", "discover", "feed", "bookmarks", "profile"], ["home", "discover", "feed", "bookmarks", "profile"],
description="Список элементов в панели навигации", description="Список элементов в панели навигации",