Use proper cursor image for output view right of text

Fixes #763.
This commit is contained in:
Allan Odgaard
2013-02-05 20:59:53 +01:00
parent 1fb7d8a6d3
commit 032cb19320

View File

@@ -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