Simplified currentCursor assignment.

This commit is contained in:
Adam Sowinski
2013-10-29 23:35:04 +00:00
parent a96242324a
commit f5a1a6725d
+1 -1
View File
@@ -117,7 +117,7 @@ var currentCursor = nil,
- (void)push
{
cursorStack.push(self);
currentCursor = cursorStack[cursorStack.length - 1];
currentCursor = self;
}
- (void)set