]> git.sesse.net Git - vlc/commitdiff
macosx: adapt fspanel layout to update time slider graphics
authorFelix Paul Kühne <fkuehne@videolan.org>
Wed, 26 Dec 2012 23:24:11 +0000 (00:24 +0100)
committerFelix Paul Kühne <fkuehne@videolan.org>
Wed, 26 Dec 2012 23:26:43 +0000 (00:26 +0100)
NEWS
modules/gui/macosx/fspanel.m

diff --git a/NEWS b/NEWS
index 1edc8f99910065537661f6d272b1f32a060cf161..e747051dc579a1caefd31fa0ff8afcbaf01c0476 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -115,6 +115,7 @@ Mac OS X Interface:
  * add options to the Advanced Open File dialog for start and stop time
  * add an option to play videos as a desktop background
  * add support for playing video and showing audio visualizations side by side
+ * improve fullscreen controller time slider with larger click target
  * The Streaming/Transcoding wizard and the open dialog's output panel are
    deprecated now
 
index a325133f5c0715e486bc5a50265d0749bf000f2a..f8f5f284d845fbb25cf2b277417cdaa58f4d4ac1 100644 (file)
     /* time slider */
     s_rc = [self frame];
     s_rc.origin.x = 15;
-    s_rc.origin.y = 55;
+    s_rc.origin.y = 45;
     s_rc.size.width = 518;
-    s_rc.size.height = 9;
+    s_rc.size.height = 13;
     o_fs_timeSlider = [[VLCFSTimeSlider alloc] initWithFrame: s_rc];
     [o_fs_timeSlider setMinValue:0];
     [o_fs_timeSlider setMaxValue:10000];
     addImage(o_vol_sld_img, 26, 23, NSCompositeSourceOver);
     addImage(o_vol_mute_img, 16, 18, NSCompositeSourceOver);
     addImage(o_vol_max_img, 124, 18, NSCompositeSourceOver);
-    addImage(o_time_sld_img, 15, 53, NSCompositeSourceOver);
+    addImage(o_time_sld_img, 15, 45, NSCompositeSourceOver);
 }
 
 @end
     [[NSGraphicsContext currentContext] restoreGraphicsState];
 
     NSRect knobRect = [[self cell] knobRectFlipped:NO];
-    knobRect.origin.y+=7.5;
+    knobRect.origin.y+=4;
     [[[NSColor blackColor] colorWithAlphaComponent:0.6] set];
     [self drawKnobInRect: knobRect];
 }