Skip to content

Commit 63e2810

Browse files
authored
Merge pull request #9157 from dstansby/osx-busy-cursor
Fix osx busy cursor
2 parents 6ab5288 + 75064e1 commit 63e2810

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/_macosx.m

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1902,6 +1902,8 @@ -(void)save_figure:(id)sender
19021902
case 1: [[NSCursor arrowCursor] set]; break;
19031903
case 2: [[NSCursor crosshairCursor] set]; break;
19041904
case 3: [[NSCursor openHandCursor] set]; break;
1905+
/* OSX handles busy state itself so no need to set a cursor here */
1906+
case 4: break;
19051907
default: return NULL;
19061908
}
19071909
Py_INCREF(Py_None);

0 commit comments

Comments
 (0)