File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ extern NSTimeInterval MMBalloonEvalInternalDelay;
121121- (void )setMouseShape : (int )shape ;
122122- (void )setBlinkWait : (int )wait on : (int )on off : (int )off ;
123123- (void )startBlink ;
124- - (void )stopBlink ;
124+ - (void )stopBlink : ( BOOL ) updateCursor ;
125125- (void )adjustLinespace : (int )linespace ;
126126- (void )adjustColumnspace : (int )columnspace ;
127127- (void )activate ;
Original file line number Diff line number Diff line change @@ -1078,9 +1078,9 @@ - (void)startBlink
10781078 }
10791079}
10801080
1081- - (void )stopBlink
1081+ - (void )stopBlink : ( BOOL ) updateCursor
10821082{
1083- if (MMBlinkStateOff == blinkState) {
1083+ if (MMBlinkStateOff == blinkState && updateCursor ) {
10841084 gui_update_cursor (TRUE , FALSE );
10851085 [self flushQueue: YES ];
10861086 }
Original file line number Diff line number Diff line change 12541254 void
12551255gui_mch_stop_blink (int may_call_gui_update_cursor)
12561256{
1257- if (may_call_gui_update_cursor)
1258- gui_update_cursor (TRUE , FALSE );
1259- [[MMBackend sharedInstance ] stopBlink ];
1257+ [[MMBackend sharedInstance ] stopBlink: may_call_gui_update_cursor];
12601258}
12611259
12621260
You can’t perform that action at this time.
0 commit comments