Skip to content

Commit 189e958

Browse files
committed
fix: don't exit on esc
1 parent 66daff8 commit 189e958

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/tui/debugbox.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,7 @@ impl Component for DebugBox {
111111

112112
bindings
113113
.command("exit", |this: &Self| this.link.exit())
114-
.with([Key::Ctrl('c')])
115-
.with([Key::Esc]);
114+
.with([Key::Ctrl('c')]);
116115
}
117116

118117
fn view(&self) -> Layout {

0 commit comments

Comments
 (0)