diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-11-01 18:35:27 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-11-01 18:35:27 +0000 |
commit | 8e0ccb6bc21a446e5c6375b7fdf200fb53a129da (patch) | |
tree | 3e596216fd46a554ea8719c150ddcaa49a16f0bd /src/proto | |
parent | 873f41a0187e81a22aa4622fbf938de72a54abba (diff) | |
download | vim-git-8e0ccb6bc21a446e5c6375b7fdf200fb53a129da.tar.gz |
patch 9.0.0825: cannot drag an entry in the tabpage linev9.0.0825
Problem: Cannot drag an entry in the tabpage line.
Solution: Clear dragwin instead of got_click. (closes #11483,
closes #11482)
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/mouse.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/mouse.pro b/src/proto/mouse.pro index 65976892a..7ce470c6c 100644 --- a/src/proto/mouse.pro +++ b/src/proto/mouse.pro @@ -1,7 +1,6 @@ /* mouse.c */ void mouse_set_vert_scroll_step(long step); void mouse_set_hor_scroll_step(long step); -void reset_mouse_got_click(void); int do_mouse(oparg_T *oap, int c, int dir, long count, int fixindent); void ins_mouse(int c); void ins_mousescroll(int dir); @@ -13,6 +12,7 @@ void del_mouse_termcode(int n); void setmouse(void); int mouse_has(int c); int mouse_model_popup(void); +void reset_dragwin(void); int jump_to_mouse(int flags, int *inclusive, int which_button); void nv_mousescroll(cmdarg_T *cap); void nv_mouse(cmdarg_T *cap); |