diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2019-07-17 17:46:52 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2019-07-17 17:46:52 +0000 |
commit | ce6e3819fc6a9332e5ed2d929c7b3bfb591815d8 (patch) | |
tree | f952c465afe423f965f6da3471043d22bc069029 /usr.bin | |
parent | 25d245138b7d4379c642620cf8cfcf88edf1e174 (diff) |
Clear overlay on normal key press.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/tmux/server-client.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/server-client.c b/usr.bin/tmux/server-client.c index 5f1a73462f1..39591ddb470 100644 --- a/usr.bin/tmux/server-client.c +++ b/usr.bin/tmux/server-client.c @@ -1,4 +1,4 @@ -/* $OpenBSD: server-client.c,v 1.292 2019/07/06 20:56:34 nicm Exp $ */ +/* $OpenBSD: server-client.c,v 1.293 2019/07/17 17:46:51 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -1226,6 +1226,7 @@ server_client_handle_key(struct client *c, struct key_event *event) return (0); } } + server_client_clear_overlay(c); } /* |