diff options
author | Christian Duerr <contact@christianduerr.com> | 2017-12-10 00:33:58 +0100 |
---|---|---|
committer | Joe Wilm <jwilm@users.noreply.github.com> | 2017-12-24 09:46:54 -0800 |
commit | fe29b8c6873c82517a218067abbf56b64cae413b (patch) | |
tree | a2cff4b838448d9e45ed56374db363dbcf724259 /src/event.rs | |
parent | 8195d7103498043270523bd81d703cb678cd11a2 (diff) | |
download | alacritty-fe29b8c6873c82517a218067abbf56b64cae413b.tar.gz alacritty-fe29b8c6873c82517a218067abbf56b64cae413b.zip |
Add custom box cursor for unfocused window
Diffstat (limited to 'src/event.rs')
-rw-r--r-- | src/event.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/event.rs b/src/event.rs index c8fb83e9..894777fa 100644 --- a/src/event.rs +++ b/src/event.rs @@ -330,6 +330,7 @@ impl<N: Notify> Processor<N> { processor.ctx.terminal.dirty = true; processor.ctx.terminal.next_is_urgent = Some(false); } else { + processor.ctx.terminal.dirty = true; *hide_cursor = false; } |