forked from organicmaps/organicmaps
[ios] Fixed crash on isolines click
Buttons were removed from xib and are left uninitialized Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
parent
3601fe1291
commit
3043771e5e
1 changed files with 4 additions and 0 deletions
|
@ -39,12 +39,16 @@ class BottomMenuLayersCell: UITableViewCell {
|
|||
}
|
||||
|
||||
private func updateGuidesButton() {
|
||||
// TODO: Either remove guides or enable button back in xib.
|
||||
if guidesButton == nil { return }
|
||||
let enabled = MapOverlayManager.guidesEnabled()
|
||||
guidesButton.setStyleAndApply(enabled ? "MenuButtonEnabled" : "MenuButtonDisabled")
|
||||
guidesButton.isBadgeHidden = !MapOverlayManager.guidesFirstLaunch()
|
||||
}
|
||||
|
||||
private func updateTrafficButton() {
|
||||
// TODO: enable button back in xib.
|
||||
if trafficButton == nil { return }
|
||||
let enabled = MapOverlayManager.trafficEnabled()
|
||||
trafficButton.setStyleAndApply(enabled ? "MenuButtonEnabled" : "MenuButtonDisabled")
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue