Ver código fonte

Shorten the copy button title on the text viewer to leave more room for the title.

Ryan Olson 12 anos atrás
pai
commit
2b23c311c4

+ 1 - 1
Classes/Global State Explorers/FLEXWebViewController.m

@@ -60,7 +60,7 @@
     self.webView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
     
     if ([self.originalText length] > 0) {
-        self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"Copy to Clipboard" style:UIBarButtonItemStylePlain target:self action:@selector(copyButtonTapped:)];
+        self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"Copy" style:UIBarButtonItemStylePlain target:self action:@selector(copyButtonTapped:)];
     }
 }