Changeset 397
- Timestamp:
- Jun 20, 2006, 12:06:08 AM (16 years ago)
- Location:
- trunk/macosx
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/English.lproj/InfoWindow.nib/info.nib
r395 r397 20 20 <integer>332</integer> 21 21 </array> 22 <key>IBOpenObjects</key> 23 <array> 24 <integer>5</integer> 25 </array> 22 26 <key>IBSystem Version</key> 23 27 <string>8I1119</string> -
trunk/macosx/InfoWindowController.m
r396 r397 30 30 #define RATIO_CHECK_TAG 2 31 31 32 #define MIN_WINDOW_WIDTH 270 33 #define MAX_WINDOW_WIDTH 2000 34 32 35 #define TAB_INFO_IDENT @"Info" 33 36 #define TAB_STATUS_IDENT @"Status" … … 36 39 37 40 //15 spacing at the bottom of each tab 38 #define TAB_INFO_HEIGHT 1 96.041 #define TAB_INFO_HEIGHT 185.0 39 42 #define TAB_STATUS_HEIGHT 199.0 40 43 #define TAB_OPTIONS_HEIGHT 82.0 … … 64 67 frame.size.height += difference; 65 68 [window setFrame: frame display: YES]; 69 [window setMinSize: NSMakeSize( MIN_WINDOW_WIDTH, frame.size.height )]; 70 [window setMaxSize: NSMakeSize( MAX_WINDOW_WIDTH, frame.size.height )]; 66 71 } 67 72 … … 332 337 [window setFrame: frame display: YES animate: YES]; 333 338 [view setHidden: NO]; 339 [window setMinSize: NSMakeSize( MIN_WINDOW_WIDTH, frame.size.height )]; 340 [window setMaxSize: NSMakeSize( MAX_WINDOW_WIDTH, frame.size.height )]; 334 341 } 335 342
Note: See TracChangeset
for help on using the changeset viewer.