Commit e026b6eb authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx: fix incorrect text shadow offset (close #7630)

(cherry picked from commit 94d4f4a69c9c424ab1f782b6e5461a9eed16bb41)
parent c1fa23c0
......@@ -646,7 +646,7 @@ void _drawFrameInRect(NSRect frameRect)
{
o_string_shadow = [[NSShadow alloc] init];
[o_string_shadow setShadowColor: [NSColor colorWithCalibratedWhite:1.0 alpha:0.5]];
[o_string_shadow setShadowOffset:NSMakeSize(0.0, -1.5)];
[o_string_shadow setShadowOffset:NSMakeSize(0.0, -1.0)];
[o_string_shadow setShadowBlurRadius:0.0];
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment