summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2019-07-17 17:46:52 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2019-07-17 17:46:52 +0000
commitce6e3819fc6a9332e5ed2d929c7b3bfb591815d8 (patch)
treef952c465afe423f965f6da3471043d22bc069029 /usr.bin
parent25d245138b7d4379c642620cf8cfcf88edf1e174 (diff)
Clear overlay on normal key press.
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/tmux/server-client.c3
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);
}
/*