浏览代码

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

Ryan Olson 12 年之前
父节点
当前提交
2b23c311c4
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Classes/Global State Explorers/FLEXWebViewController.m

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

@@ -60,7 +60,7 @@
     self.webView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
     self.webView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
     
     
     if ([self.originalText length] > 0) {
     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:)];
     }
     }
 }
 }