mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 15:11:37 +00:00
Fix to NSTextView issue where it goes into an infinite loop if the event is returned as nil
This commit is contained in:
parent
b9c5ba35be
commit
bec2392e33
1 changed files with 1 additions and 1 deletions
|
@ -5844,7 +5844,7 @@ other than copy/paste or dragging. */
|
|||
untilDate: [NSDate distantFuture]
|
||||
inMode: NSEventTrackingRunLoopMode
|
||||
dequeue: YES];
|
||||
} while ([currentEvent type] != NSLeftMouseUp);
|
||||
} while ([currentEvent type] != NSLeftMouseUp && currentEvent != nil);
|
||||
|
||||
if (gettingPeriodic)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue