]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/fspanel.m
macosx: fix visual appearance of fullscreen tic (refs #8628)
[vlc] / modules / gui / macosx / fspanel.m
index de79fa8f3e7472b2171785b916e500ce9277dd18..e506cecef8f52d26c6b0adf2132176b83f4a97de 100644 (file)
     [self drawKnobInRect: knobRect];
 }
 
+- (void)drawFullVolBezierPath:(NSBezierPath*)bezierPath
+{
+    CGFloat fullVolPos = [self fullVolumePos];
+    [bezierPath moveToPoint:NSMakePoint(fullVolPos, [self frame].size.height)];
+    [bezierPath lineToPoint:NSMakePoint(fullVolPos, 1.)];
+}
+
 @end