Browse Source

menu: fix missing WiFi Upload icon if WiFi is disabled on the device

Felix Paul Kühne 11 years ago
parent
commit
a77f2194f5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      AspenProject/VLCMenuTableViewController.m

+ 1 - 1
AspenProject/VLCMenuTableViewController.m

@@ -124,7 +124,7 @@
         _uploadLocationLabel.text = NSLocalizedString(@"HTTP_UPLOAD_SERVER_OFF", @"");
     } else {
         _uploadButton.enabled = NO;
-        [_uploadButton setImage:[UIImage imageNamed:@"WiFiUp"] forState:UIControlStateNormal];
+        [_uploadButton setImage:[UIImage imageNamed:@"WiFiUp"] forState:UIControlStateDisabled];
         _uploadLocationLabel.text = NSLocalizedString(@"HTTP_UPLOAD_NO_CONNECTIVITY", @"");
         [self.uploadController changeHTTPServerState:NO];
     }