Skip to content

Commit f559e94

Browse files
committed
Fix
1 parent 78b6946 commit f559e94

File tree

4 files changed

+0
-11
lines changed

4 files changed

+0
-11
lines changed

Diff for: tools/config_editor/app.py

100644100755
-8
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,6 @@ class ConfigEditorApp(App):
2828
"compile": CompileScreen(),
2929
"editor": EditorScreen(),
3030
}
31-
BINDINGS = [
32-
("c", "push_screen('compile')", "Compile"),
33-
("t", "push_screen('targets', update_targets)", "Change Targets"),
34-
("o", "push_screen('editor')", "Change Options"),
35-
("l", "app.toggle_class('RichLog', '-hidden')", "Log"),
36-
("q", "quit", "Quit"),
37-
]
3831

3932
def log_print(self, renderable: RenderableType) -> None:
4033
self.query_one(RichLog).write(renderable)
@@ -71,7 +64,6 @@ def compose(self) -> ComposeResult:
7164
yield Button("Change Configuration Options", id="options-button", classes="main-menu-button")
7265
yield Button("Quit", id="quit-button", classes="main-menu-button")
7366
yield RichLog(classes="-hidden", wrap=False, highlight=True, markup=True)
74-
yield Footer()
7567

7668
def on_mount(self) -> None:
7769
self.title = "Configurator"

Diff for: tools/config_editor/compile.py

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ def compose(self) -> ComposeResult:
1010
yield Header()
1111
with Container():
1212
yield Static("Compile", id="compile-title")
13-
yield Footer()
1413

1514
def on_mount(self) -> None:
1615
pass

Diff for: tools/config_editor/editor.py

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ def compose(self) -> ComposeResult:
2121
yield DirectoryTree(path, id="tree-view")
2222
with VerticalScroll(id="code-view"):
2323
yield Static(id="code", expand=True)
24-
yield Footer()
2524

2625
def on_mount(self) -> None:
2726
self.sub_title = "Select a file"

Diff for: tools/config_editor/targets.py

-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ def compose(self) -> ComposeResult:
4747
yield Button("Select All", id="select-all-button", classes="target-button")
4848
yield Button("Select None", id="select-none-button", classes="target-button")
4949
yield Button("Cancel", id="cancel-button", classes="target-button")
50-
yield Footer()
5150

5251
def on_mount(self) -> None:
5352
self.sub_title = "Target Selection"

0 commit comments

Comments
 (0)