Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
VideoLAN
VLC-iOS
Commits
ef9ea274
Commit
ef9ea274
authored
Dec 02, 2013
by
Felix Paul Kühne
Browse files
menu: fix inconsistent visual WiFi uploader states
parent
c591e59c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Sources/VLCMenuTableViewController.m
View file @
ef9ea274
...
...
@@ -128,8 +128,9 @@
{
if
(
_reachability
.
currentReachabilityStatus
==
ReachableViaWiFi
)
{
_uploadButton
.
enabled
=
YES
;
_uploadLocationLabel
.
text
=
NSLocalizedString
(
@"HTTP_UPLOAD_SERVER_OFF"
,
@""
)
;
[
self
updateHTTPServerAddress
]
;
}
else
{
[
_uploadButton
setImage
:[
UIImage
imageNamed
:
@"WifiUp"
]
forState
:
UIControlStateNormal
];
_uploadButton
.
enabled
=
NO
;
[
_uploadButton
setImage
:[
UIImage
imageNamed
:
@"WiFiUp"
]
forState
:
UIControlStateDisabled
];
_uploadLocationLabel
.
text
=
NSLocalizedString
(
@"HTTP_UPLOAD_NO_CONNECTIVITY"
,
@""
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment