diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2013-06-23 12:51:28 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2013-06-23 12:51:28 +0000 |
commit | a41cd8d75b55da5a1e75e187b30b33917c18c1b2 (patch) | |
tree | 8315e67de6cc6a21ad24e04568a821ff7c5dedf5 | |
parent | 662d471215d66d3c44a9251cef7d00b25587851d (diff) | |
download | rtmux-a41cd8d75b55da5a1e75e187b30b33917c18c1b2.tar.gz rtmux-a41cd8d75b55da5a1e75e187b30b33917c18c1b2.tar.bz2 rtmux-a41cd8d75b55da5a1e75e187b30b33917c18c1b2.zip |
Always push a focus event when the application turns it on, prompted by
discussion with Hayaki Saito a while ago.
-rw-r--r-- | input.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1333,7 +1333,7 @@ input_csi_dispatch(struct input_ctx *ictx) if (s->mode & MODE_FOCUSON) break; screen_write_mode_set(&ictx->ctx, MODE_FOCUSON); - wp->flags &= ~PANE_FOCUSED; /* force update if needed */ + wp->flags |= PANE_FOCUSPUSH; /* force update */ break; case 1005: screen_write_mode_set(&ictx->ctx, MODE_MOUSE_UTF8); |