From 032cb19320259bad5cb5d43540020bb7726cd73e Mon Sep 17 00:00:00 2001 From: Allan Odgaard Date: Tue, 5 Feb 2013 20:59:53 +0100 Subject: [PATCH] Use proper cursor image for output view right of text Fixes #763. --- Frameworks/DocumentWindow/src/ProjectLayoutView.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Frameworks/DocumentWindow/src/ProjectLayoutView.mm b/Frameworks/DocumentWindow/src/ProjectLayoutView.mm index 71196119..a8074175 100644 --- a/Frameworks/DocumentWindow/src/ProjectLayoutView.mm +++ b/Frameworks/DocumentWindow/src/ProjectLayoutView.mm @@ -311,7 +311,7 @@ NSString* const kUserDefaultsHTMLOutputSizeKey = @"htmlOutputSize"; - (void)resetCursorRects { [self addCursorRect:[self fileBrowserResizeRect] cursor:[NSCursor resizeLeftRightCursor]]; - [self addCursorRect:[self htmlOutputResizeRect] cursor:[NSCursor resizeUpDownCursor]]; + [self addCursorRect:[self htmlOutputResizeRect] cursor:_htmlOutputOnRight ? [NSCursor resizeLeftRightCursor] : [NSCursor resizeUpDownCursor]]; } - (BOOL)isOpaque