mirror of
https://github.com/neovim/neovim.git
synced 2025-09-20 10:18:18 +00:00
Fix visual selection after left click on tabline
After left clicking on a tab in the tabline, the "in_tab_line" variable wasn't set to 'false' and every following mouse action assumed still being on the tabline which messed up visual selection etc.
This commit is contained in:
@@ -2067,6 +2067,7 @@ do_mouse (
|
|||||||
} else if (is_drag && in_tab_line) {
|
} else if (is_drag && in_tab_line) {
|
||||||
c1 = TabPageIdxs[mouse_col];
|
c1 = TabPageIdxs[mouse_col];
|
||||||
tabpage_move(c1 <= 0 ? 9999 : c1 - 1);
|
tabpage_move(c1 <= 0 ? 9999 : c1 - 1);
|
||||||
|
in_tab_line = false;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user