mirror of
https://github.com/neovim/neovim.git
synced 2026-08-29 02:21:51 +00:00
fix(pum): make right drag in anchor grid to select work in multigrid UI (#19382)
This commit is contained in:
@@ -976,7 +976,7 @@ static void pum_select_mouse_pos(void)
|
||||
if (mouse_grid == pum_grid.handle) {
|
||||
pum_selected = mouse_row;
|
||||
return;
|
||||
} else if (mouse_grid > 1) {
|
||||
} else if (mouse_grid != pum_anchor_grid) {
|
||||
pum_selected = -1;
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user