]> git.sesse.net Git - vlc/commitdiff
macosx: fix incorrect text shadow offset (close #7630)
authorFelix Paul Kühne <fkuehne@videolan.org>
Thu, 15 Nov 2012 18:33:40 +0000 (19:33 +0100)
committerFelix Paul Kühne <fkuehne@videolan.org>
Thu, 15 Nov 2012 18:45:18 +0000 (19:45 +0100)
modules/gui/macosx/misc.m

index 8fa0dcf1b961d67c1562669a890158adf8717ffd..6c03a3b8869350059875c75893537d807b9da6db 100644 (file)
@@ -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];
     }