diff options
author | Teddy Wing | 2016-08-06 05:00:50 -0400 |
---|---|---|
committer | Teddy Wing | 2016-08-06 05:00:50 -0400 |
commit | b4e150f01e9d282a6dab318ee7bb0ee9884b2263 (patch) | |
tree | 4145c84cb611a2a1f87dcb540168acf6c56acf61 | |
parent | 436a22b1a6b82e9a73a4a1781970da50b350ecee (diff) | |
download | Passextract-b4e150f01e9d282a6dab318ee7bb0ee9884b2263.tar.bz2 |
Set window title in knockout text
Make the title appear in white-on-black knockout text.
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 54d8006..23f808e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -49,7 +49,7 @@ fn main() { let mut clipboard_ctx = ClipboardContext::new().unwrap(); loop { - term.printline(0, 0, "Passextract (Press q or Ctrl-C to quit)"); + term.printline_with_cell(0, 0, "Passextract (Press q or Ctrl-C to quit)", knockout_cell); term.printline_with_cell(selection.x, selection.y, "->", knockout_cell); |