diff options
author | nicm <nicm> | 2021-08-13 18:54:54 +0000 |
---|---|---|
committer | nicm <nicm> | 2021-08-13 18:54:54 +0000 |
commit | 7789639b5d1818ebbac7bfab74959e4968d7cdf2 (patch) | |
tree | 1875b3fa863cb664f34b8c5b5e6278abca63bcdf /tty.c | |
parent | 614611a8bd65e82efccdf44d4f9c23c0f35ed293 (diff) | |
download | rtmux-7789639b5d1818ebbac7bfab74959e4968d7cdf2.tar.gz rtmux-7789639b5d1818ebbac7bfab74959e4968d7cdf2.tar.bz2 rtmux-7789639b5d1818ebbac7bfab74959e4968d7cdf2.zip |
Add a menu when a popup is present (mouse only for now).
Diffstat (limited to 'tty.c')
-rw-r--r-- | tty.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1318,7 +1318,7 @@ tty_check_overlay(struct tty *tty, u_int px, u_int py) if (c->overlay_check == NULL) return (1); - return (c->overlay_check(c, px, py)); + return (c->overlay_check(c, c->overlay_data, px, py)); } void |