JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
Tmux wants this to be mutually exclusive.
authorChristoph Lohmann <20h@r-36.net>
Fri, 15 Feb 2013 16:45:38 +0000 (17:45 +0100)
committerChristoph Lohmann <20h@r-36.net>
Fri, 15 Feb 2013 16:45:38 +0000 (17:45 +0100)
Thanks Egmont Koblinger <egmont@gmail.com> for noticing this!

st.c

diff --git a/st.c b/st.c
index 72f12a7..8206001 100644 (file)
--- a/st.c
+++ b/st.c
@@ -1557,9 +1557,11 @@ tsetmode(bool priv, bool set, int *args, int narg) {
                                break;
                        case 1000: /* 1000,1002: enable xterm mouse report */
                                MODBIT(term.mode, set, MODE_MOUSEBTN);
+                               MODBIT(term.mode, 0, MODE_MOUSEMOTION);
                                break;
                        case 1002:
                                MODBIT(term.mode, set, MODE_MOUSEMOTION);
+                               MODBIT(term.mode, 0, MODE_MOUSEBTN);
                                break;
                        case 1006:
                                MODBIT(term.mode, set, MODE_MOUSESGR);