]> git.saurik.com Git - cydia.git/commitdiff
more browserview/cydia
authorGrant Paul <chpwn@chpwn.com>
Thu, 23 Sep 2010 23:36:19 +0000 (16:36 -0700)
committerJay Freeman <saurik@Jay-Freemans-MacBook-Pro.local>
Mon, 4 Oct 2010 07:12:20 +0000 (00:12 -0700)
Cydia.mm
UICaboodle/BrowserView.mm

index 02c2ae9a178573cdbf526fe09ebafd82ed674460..f42afe3ecd8bdd5d50d44dabfe419fc6cd0335d9 100644 (file)
--- a/Cydia.mm
+++ b/Cydia.mm
@@ -5264,7 +5264,11 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) {
 }
 
 - (void) reloadButtonClicked {
-    // You don't reload a package view by clicking the button.
+    // Don't reload a package view by clicking the button.
+}
+
+- (void) applyLoadingTitle {
+    // Don't show "Loading" as the title. Ever.
 }
 #endif
 
index 793fe5d09f9fbe310e4f075ae5e1f2f947d47f09..dbdc8f418045b3de8419e3d427bba7a3711b9eb4 100644 (file)
@@ -1064,10 +1064,14 @@ static Class $UIWebBrowserView;
     return [customItem autorelease];
 }
 
+- (void) applyLoadingTitle {
+    [[self navigationItem] setTitle:UCLocalize("LOADING")];
+}
+
 - (void) applyRightButton {
        if ([self isLoading]) {
            [[self navigationItem] setRightBarButtonItem:loadingitem_ animated:YES];
-           [[self navigationItem] setTitle:UCLocalize("LOADING")];
+        [self applyLoadingTitle];
     } else if (button_) {
         [[self navigationItem] setRightBarButtonItem:[self customButton] animated:YES];
     } else {