This commit is contained in:
2025-09-30 22:27:34 +08:00
parent d1b606782f
commit acfd179435
2 changed files with 3 additions and 1 deletions

2
.gitignore vendored
View File

@@ -5,3 +5,5 @@ __pycache__/
scripts/ scripts/
.idea .idea
cache cache
nucleon/test.toml
electron/test.toml

View File

@@ -197,7 +197,7 @@ class NewNucleonScreen(Screen):
def compose(self) -> ComposeResult: def compose(self) -> ComposeResult:
yield Header(show_clock=True) yield Header(show_clock=True)
with Container(id="vice_container"): with Container(id="vice_container"):
yield Label(f"新建空的单元集\n") yield Label(f"[b]新建空的单元集\n")
yield Markdown("1. 键入单元集名称") yield Markdown("1. 键入单元集名称")
yield Input(placeholder="单元集名称") yield Input(placeholder="单元集名称")
yield Markdown("> 单元集名称不应与现有单元集重复, 新的单元集文件将创建在 ./nucleon/你输入的名称.toml") yield Markdown("> 单元集名称不应与现有单元集重复, 新的单元集文件将创建在 ./nucleon/你输入的名称.toml")