Commit 68649ad4 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

macosx: 10.5-ification of the Main Controller Window (Thinner border). feel free to disagree.

parent a409380d
...@@ -2,24 +2,20 @@ ...@@ -2,24 +2,20 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0"> <plist version="1.0">
<dict> <dict>
<key>IBDocumentLocation</key>
<string>429 441 496 337 0 0 1280 778 </string>
<key>IBEditorPositions</key>
<dict>
<key>29</key>
<string>64 734 438 44 0 0 1280 778 </string>
</dict>
<key>IBFramework Version</key> <key>IBFramework Version</key>
<string>489.0</string> <string>667</string>
<key>IBLastKnownRelativeProjectPath</key> <key>IBLastKnownRelativeProjectPath</key>
<string>../../vlc.xcodeproj</string> <string>../../vlc.xcodeproj</string>
<key>IBOldestOS</key> <key>IBOldestOS</key>
<integer>5</integer> <integer>5</integer>
<key>IBOpenObjects</key> <key>IBOpenObjects</key>
<array> <array>
<integer>21</integer> <integer>2197</integer>
<integer>915</integer>
<integer>2416</integer> <integer>2416</integer>
<integer>282</integer>
<integer>29</integer> <integer>29</integer>
<integer>21</integer>
</array> </array>
<key>IBSystem Version</key> <key>IBSystem Version</key>
<string>9D34</string> <string>9D34</string>
......
...@@ -532,7 +532,7 @@ static VLCMain *_o_sharedMainInstance = nil; ...@@ -532,7 +532,7 @@ static VLCMain *_o_sharedMainInstance = nil;
else else
{ {
b_small_window = NO; b_small_window = NO;
[o_playlist_view setFrame: NSMakeRect( 10, 10, [o_window frame].size.width - 20, [o_window frame].size.height - 105 )]; [o_playlist_view setFrame: NSMakeRect( 0, 0, [o_window frame].size.width, [o_window frame].size.height - 95 )];
[o_playlist_view setNeedsDisplay:YES]; [o_playlist_view setNeedsDisplay:YES];
[o_playlist_view setAutoresizesSubviews: YES]; [o_playlist_view setAutoresizesSubviews: YES];
[[o_window contentView] addSubview: o_playlist_view]; [[o_window contentView] addSubview: o_playlist_view];
...@@ -2234,7 +2234,7 @@ static VLCMain *_o_sharedMainInstance = nil; ...@@ -2234,7 +2234,7 @@ static VLCMain *_o_sharedMainInstance = nil;
{ {
/* If large and coming from small then show */ /* If large and coming from small then show */
[o_playlist_view setAutoresizesSubviews: YES]; [o_playlist_view setAutoresizesSubviews: YES];
[o_playlist_view setFrame: NSMakeRect( 10, 10, [o_window frame].size.width - 20, [o_window frame].size.height - [o_window minSize].height - 10 )]; [o_playlist_view setFrame: NSMakeRect( 0, 0, [o_window frame].size.width, [o_window frame].size.height - [o_window minSize].height )];
[o_playlist_view setNeedsDisplay:YES]; [o_playlist_view setNeedsDisplay:YES];
[[o_window contentView] addSubview: o_playlist_view]; [[o_window contentView] addSubview: o_playlist_view];
b_small_window = NO; b_small_window = NO;
......
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