[vlc-commits] macosx: fixed resizing issue, which was in part fixed by the previous commit by accident (close #6203)

Felix Paul Kühne git at videolan.org
Sun Mar 4 17:51:57 CET 2012


vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Sun Mar  4 17:51:06 2012 +0100| [f56aba45d9d053e74ff35c1aa877c4326391753a] | committer: Felix Paul Kühne

macosx: fixed resizing issue, which was in part fixed by the previous commit by accident (close #6203)

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f56aba45d9d053e74ff35c1aa877c4326391753a
---

 modules/gui/macosx/MainWindow.m |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/modules/gui/macosx/MainWindow.m b/modules/gui/macosx/MainWindow.m
index 808018d..8a98e5f 100644
--- a/modules/gui/macosx/MainWindow.m
+++ b/modules/gui/macosx/MainWindow.m
@@ -1975,7 +1975,7 @@ static VLCMainWindow *_o_sharedInstance = nil;
 - (CGFloat)splitView:(NSSplitView *)splitView constrainMaxCoordinate:(CGFloat)proposedMax ofSubviewAt:(NSInteger)dividerIndex
 {
     if (dividerIndex == 0)
-        return ([self frame].size.width - 300.0);
+        return ([self frame].size.width - 400.0);
     else
         return proposedMax;
 }



More information about the vlc-commits mailing list