]> granicus.if.org Git - transmission/commitdiff
uncomment resizing code for localizations post-2.7
authorMitchell Livingston <livings124@transmissionbt.com>
Wed, 26 Sep 2012 18:59:34 +0000 (18:59 +0000)
committerMitchell Livingston <livings124@transmissionbt.com>
Wed, 26 Sep 2012 18:59:34 +0000 (18:59 +0000)
macosx/AddMagnetWindowController.m
macosx/InfoGeneralViewController.m
macosx/InfoOptionsViewController.m

index f1408b72879f363797c2b2a7d1c13efe43ddd577..47442178592124ec9a3c896603fae6f36041a05f 100644 (file)
@@ -95,8 +95,6 @@
         [fLocationImageView setImage: nil];
     }
     
-    #warning enable after 2.7
-    /*
     #warning when 10.7-only, switch to auto layout
     [fMagnetLinkLabel sizeToFit];
     
     [fCancelButton setFrame: cancelButtonFrame];
     
     [fStartCheck sizeToFit];
-     */
 }
 
 - (void) windowDidLoad
index aa606ad3c29104deb92dd3ba185274cbecc7ffdc..6330c47a42feaa30b0d9fdd22a93d739b375c4b1 100644 (file)
@@ -51,8 +51,7 @@
     [super dealloc];
 }
 
-#warning uncomment after 2.7
-/*- (void) awakeFromNib
+- (void) awakeFromNib
 {
     #warning remove when 10.7-only with auto layout
     [fInfoSectionLabel sizeToFit];
@@ -94,7 +93,7 @@
         frame.size.width -= widthIncrease;
         [field setFrame: frame];
     }
-}*/
+}
 
 - (void) setInfoForTorrents: (NSArray *) torrents
 {
index 3a82d110822195b50a60bcb89156464f581ec417..e752e269ea14a4fe773d53fc7dd70a595038d523 100644 (file)
@@ -64,7 +64,7 @@
     [[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(updateOptionsNotification:) name: @"UpdateOptionsNotification" object: nil];
     
     #warning remove when 10.7-only with auto layout
-    /*const CGFloat padding = 6.0; //this shows as 8 in IB
+    const CGFloat padding = 6.0; //this shows as 8 in IB
     [fPrioritySectionLabel sizeToFit];
     [fPriorityLabel sizeToFit];
     NSRect priorityPopUpFrame = [fPriorityPopUp frame];
     [fPeersConnectLabel sizeToFit];
     NSRect peersConnectLabelFrame = [fPeersConnectLabel frame];
     peersConnectLabelFrame.origin.x = NSMaxX(peersConnectFrame) + padding;
-    [fPeersConnectLabel setFrame: peersConnectLabelFrame];*/
+    [fPeersConnectLabel setFrame: peersConnectLabelFrame];
 }
 
 - (void) dealloc