From f5a1a6725ddf4a75e016a21278680891f154cdcb Mon Sep 17 00:00:00 2001 From: Adam Sowinski Date: Tue, 29 Oct 2013 23:35:04 +0000 Subject: [PATCH] Simplified currentCursor assignment. --- AppKit/CPCursor.j | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AppKit/CPCursor.j b/AppKit/CPCursor.j index 887f669ac..c6c96acdc 100755 --- a/AppKit/CPCursor.j +++ b/AppKit/CPCursor.j @@ -117,7 +117,7 @@ var currentCursor = nil, - (void)push { cursorStack.push(self); - currentCursor = cursorStack[cursorStack.length - 1]; + currentCursor = self; } - (void)set