Fix “hide sensitive content” button being hidden (#1024)
This commit is contained in:
parent
c638d86cb7
commit
17dce25e07
|
@ -311,14 +311,15 @@ extension StatusView.ViewModel {
|
||||||
// statusView.spoilerBannerView.label.reset()
|
// statusView.spoilerBannerView.label.reset()
|
||||||
}
|
}
|
||||||
|
|
||||||
if statusView.style == .editHistory, let spoilerContent = spoilerContent, !spoilerContent.string.isEmpty {
|
if statusView.style == .editHistory {
|
||||||
|
statusView.setContentSensitiveeToggleButtonDisplay(isDisplay: false)
|
||||||
|
}
|
||||||
|
if let spoilerContent = spoilerContent, !spoilerContent.string.isEmpty {
|
||||||
statusView.historyContentWarningLabel.configure(content: spoilerContent)
|
statusView.historyContentWarningLabel.configure(content: spoilerContent)
|
||||||
statusView.historyContentWarningAdaptiveMarginContainerView.isHidden = statusView.style != .editHistory
|
statusView.historyContentWarningAdaptiveMarginContainerView.isHidden = statusView.style != .editHistory
|
||||||
statusView.setContentSensitiveeToggleButtonDisplay(isDisplay: false)
|
|
||||||
} else {
|
} else {
|
||||||
statusView.historyContentWarningLabel.reset()
|
statusView.historyContentWarningLabel.reset()
|
||||||
statusView.historyContentWarningAdaptiveMarginContainerView.isHidden = true
|
statusView.historyContentWarningAdaptiveMarginContainerView.isHidden = true
|
||||||
statusView.setContentSensitiveeToggleButtonDisplay(isDisplay: false)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
let paragraphStyle = statusView.contentMetaText.paragraphStyle
|
let paragraphStyle = statusView.contentMetaText.paragraphStyle
|
||||||
|
|
Loading…
Reference in New Issue