From 5d0353d0c1452145784580a6be81b5f6d0d49aeb Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Thu, 10 Aug 2023 16:33:29 +0400 Subject: input: Update quit message --- src/input.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/input.rs b/src/input.rs index 447aaca3..b7704221 100644 --- a/src/input.rs +++ b/src/input.rs @@ -47,7 +47,7 @@ impl Niri { if let Some(action) = action { match action { InputAction::Quit => { - info!("quitting because Esc was pressed"); + info!("quitting because quit bind was pressed"); self.stop_signal.stop() } InputAction::ChangeVt(vt) => { -- cgit