Skip to content
This repository has been archived by the owner on Jan 19, 2018. It is now read-only.

Commit

Permalink
Tweak empty VC font size and text
Browse files Browse the repository at this point in the history
  • Loading branch information
cdzombak committed Mar 4, 2013
1 parent ddc89bc commit 4d6b868
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions buyvmmanager/BVMEmptyDetailViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ - (void)viewDidLoad
self.view.backgroundColor = [UIColor bvm_tableViewBackgroundColor];
self.textLabel.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleBottomMargin;

UIFont *font = [UIFont fontWithName:@"Jrhand" size:24];
UIFont *font = [UIFont fontWithName:@"Jrhand" size:25];
self.textLabel.font = font;
self.textLabel.textColor = [UIColor darkTextColor];

if ([BVMServersManager servers].count == 0) {
self.textLabel.numberOfLines = 0;
self.textLabel.text = NSLocalizedString(@"Get started:\nTap the \"+\" button to add a VM.\n(If there's no \"+\" button, tap \"Edit\".)", nil);
self.textLabel.text = NSLocalizedString(@"Tap the \"+\" button to add a VM.\n(If there's no \"+\" button, tap \"Edit\".)", nil);

CGRect labelFrame = self.textLabel.frame;
labelFrame.size.height *= 3;
Expand Down
2 changes: 1 addition & 1 deletion buyvmmanager/BVMEmptyDetailViewController.xib
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<int key="IBUIContentMode">7</int>
<bool key="IBUIUserInteractionEnabled">NO</bool>
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
<string key="IBUIText">Choose a VM on the left to get started!</string>
<string key="IBUIText">Choose a VM on the left!</string>
<object class="NSColor" key="IBUITextColor">
<int key="NSColorSpace">1</int>
<bytes key="NSRGB">MCAwIDAAA</bytes>
Expand Down

0 comments on commit 4d6b868

Please sign in to comment.