diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-08-01 15:52:45 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-08-01 15:52:45 +0200 |
commit | 13b11eddcaf5176fb1127c8bc8f4b4f46bd05488 (patch) | |
tree | 94341003d3cead6759dbbeae715acd04776bd9a2 /src/proto | |
parent | b66bab381c8ba71fd6e92327d1d34c6f8a65f2a7 (diff) | |
download | vim-git-13b11eddcaf5176fb1127c8bc8f4b4f46bd05488.tar.gz |
patch 8.1.1786: double click in popup scrollbar starts selectionv8.1.1786
Problem: Double click in popup scrollbar starts selection.
Solution: Ignore the double click.
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/popupwin.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/popupwin.pro b/src/proto/popupwin.pro index 0a5db0c48..145cbea25 100644 --- a/src/proto/popupwin.pro +++ b/src/proto/popupwin.pro @@ -4,6 +4,7 @@ int popup_on_X_button(win_T *wp, int row, int col); void popup_start_drag(win_T *wp); void popup_drag(win_T *wp); void popup_set_firstline(win_T *wp); +int popup_is_in_scrollbar(win_T *wp, int row, int col); void popup_handle_scrollbar_click(win_T *wp, int row, int col); int popup_height(win_T *wp); int popup_width(win_T *wp); |