From db5b56b068761fbd7657927ee9543ccdcb1dea1f Mon Sep 17 00:00:00 2001 From: espectador Date: Wed, 3 Jul 2013 00:05:31 +0000 Subject: [PATCH] Revert last change in NSCursor. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@36806 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 4 ++++ Source/NSCursor.m | 10 +++------- 2 files changed, 7 insertions(+), 7 deletions(-) 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.