mirror of
https://github.com/macvim-dev/macvim.git
synced 2026-06-11 15:37:29 +02:00
Ensure mouse cursor is set (again)
The former patch did not work 100% and it also hogged CPU. This patch seems to work better and requires no extra CPU.
This commit is contained in:
committed by
Bjorn Winckler
parent
eef4ba19a6
commit
8afb077865
@@ -934,11 +934,6 @@ enum {
|
||||
[data appendBytes:&row length:sizeof(int)];
|
||||
[data appendBytes:&col length:sizeof(int)];
|
||||
|
||||
// NSTextView wants to set the cursor to an IBeam every now and then.
|
||||
// Not even Apple's TextLinks example application works, so we set
|
||||
// "our" cursor on every mouse move.
|
||||
[self setCursor];
|
||||
|
||||
[[self vimController] sendMessage:MouseMovedMsgID data:data];
|
||||
|
||||
//NSLog(@"Moved %d %d\n", col, row);
|
||||
@@ -952,8 +947,14 @@ enum {
|
||||
// NOTE: This event is received even when the window is not key; thus we
|
||||
// have to take care not to enable mouse moved events unless our window is
|
||||
// key.
|
||||
if ([[self window] isKeyWindow])
|
||||
if ([[self window] isKeyWindow]) {
|
||||
[[self window] setAcceptsMouseMovedEvents:YES];
|
||||
|
||||
// Ensure Vim gets to choose the mouse cursor when it enters over the
|
||||
// text view, otherwise NSTextView will automatically set its I-Beam
|
||||
// cursor.
|
||||
[self setCursor];
|
||||
}
|
||||
}
|
||||
|
||||
- (void)mouseExited:(NSEvent *)event
|
||||
|
||||
Reference in New Issue
Block a user