Commit 94d4f4a6 authored by Felix Paul Kühne's avatar Felix Paul Kühne

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

parent 125988f8
......@@ -599,7 +599,7 @@ void _drawFrameInRect(NSRect frameRect)
if (!o_string_shadow) {
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