Просмотр исходного кода

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

Ryan Olson лет назад: 12
Родитель
Сommit
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;
     
     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:)];
     }
 }