From e6eae238becf1241c1783076ed7ec91a40f8e3f0 Mon Sep 17 00:00:00 2001 From: Alain Emilia Anna Zscheile Date: Sat, 28 Sep 2024 09:22:16 +0200 Subject: [PATCH] egui: fix action-quit key (Ctrl+V -> more intuitive Ctrl+Q) --- src/bin/topola-egui/top.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/topola-egui/top.rs b/src/bin/topola-egui/top.rs index f6f1977..e375e79 100644 --- a/src/bin/topola-egui/top.rs +++ b/src/bin/topola-egui/top.rs @@ -89,7 +89,7 @@ impl Top { let mut quit = Trigger::new(Action::new( tr.text("action-quit"), egui::Modifiers::CTRL, - egui::Key::V, + egui::Key::Q, )); let mut autoroute = Trigger::new(Action::new( tr.text("action-autoroute"),