diff options
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/main.rs b/src/main.rs index a732c22..e8b4631 100644 --- a/src/main.rs +++ b/src/main.rs @@ -10,12 +10,12 @@ fn main() {      term.swap_buffers().unwrap();      loop { -        term.printline(0, 0, "booyakacha"); +        term.printline(0, 0, "Passextract (Press q or Ctrl-C to quit)");          let evt = term.get_event(Duration::from_millis(100)).unwrap();          if let Some(Event::Key(ch)) = evt {              match ch { -                'q' => { +                'q' | '\x03' => {                      break;                  }                  c @ _ => { | 
