diff --git a/ChangeLog b/ChangeLog index 90a552f55..728bcf2b1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2013-07-02 German A. Arias + + * Source/NSCursor.m (-push): Revert last change. + 2013-07-02 German A. Arias * Source/NSCursor.m (-push): If the cursor is the current cursor, diff --git a/Source/NSCursor.m b/Source/NSCursor.m index 79b685c8c..70da83128 100644 --- a/Source/NSCursor.m +++ b/Source/NSCursor.m @@ -490,13 +490,9 @@ backgroundColorHint:(NSColor *)bg */ - (void) push { - // If this is the current cursor, don't set it again. - if (gnustep_gui_current_cursor != self) - { - [gnustep_gui_cursor_stack addObject: gnustep_gui_current_cursor]; - [self set]; - NSDebugLLog(@"NSCursor", @"Cursor push %p", _cid); - } + [gnustep_gui_cursor_stack addObject: gnustep_gui_current_cursor]; + [self set]; + NSDebugLLog(@"NSCursor", @"Cursor push %p", _cid); } /**

Sets the NSCursor as the current cursor.