mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-21 02:24:09 -07:00
Only warn about mouse movement when the mouse is down. (#13101)
This commit is contained in:
@@ -100,7 +100,8 @@ export function MouseProvider({
|
||||
!handled &&
|
||||
event.name === 'move' &&
|
||||
event.col >= 0 &&
|
||||
event.row >= 0
|
||||
event.row >= 0 &&
|
||||
event.button === 'left'
|
||||
) {
|
||||
// Terminal apps only receive mouse move events when the mouse is down
|
||||
// so this always indicates a mouse drag that the user was expecting
|
||||
|
||||
Reference in New Issue
Block a user