From 8ef92c29f95c526b6065caaf61e1cceddf69dab9 Mon Sep 17 00:00:00 2001 From: Allan Odgaard Date: Tue, 12 Feb 2013 15:43:50 +0100 Subject: [PATCH] Set bottom border for HTML window --- Frameworks/HTMLOutputWindow/src/HTMLOutputWindow.mm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Frameworks/HTMLOutputWindow/src/HTMLOutputWindow.mm b/Frameworks/HTMLOutputWindow/src/HTMLOutputWindow.mm index e3340a42..86f1f3d0 100644 --- a/Frameworks/HTMLOutputWindow/src/HTMLOutputWindow.mm +++ b/Frameworks/HTMLOutputWindow/src/HTMLOutputWindow.mm @@ -31,6 +31,8 @@ static std::multimap Windows; [self.window setContentView:self.htmlOutputView]; [self.window setDelegate:self]; [self.window setReleasedWhenClosed:NO]; + [self.window setAutorecalculatesContentBorderThickness:NO forEdge:NSMinYEdge]; + [self.window setContentBorderThickness:25 forEdge:NSMinYEdge]; [OakWindowFrameHelper windowFrameHelperWithWindow:self.window];