Compare commits

..

No commits in common. "0c0180264edc55f81b2440dbee19096b1dafdb72" and "6f51f321f626e4931431584a56649c915339c962" have entirely different histories.

2 changed files with 2 additions and 18 deletions

View File

@ -161,15 +161,7 @@ class ProfileViewController: UIViewController, StateRestorableViewController {
// if old doesn't exist, we're selecting the initial view controller, so moving the header around isn't necessary
new.initialHeaderMode = .createView
new.view.translatesAutoresizingMaskIntoConstraints = false
addChild(new)
view.addSubview(new.view)
NSLayoutConstraint.activate([
new.view.leadingAnchor.constraint(equalTo: view.leadingAnchor),
new.view.trailingAnchor.constraint(equalTo: view.trailingAnchor),
new.view.topAnchor.constraint(equalTo: view.topAnchor),
new.view.bottomAnchor.constraint(equalTo: view.bottomAnchor),
])
new.didMove(toParent: self)
embedChild(new)
self.currentIndex = index
state = .idle
completion?(true)

View File

@ -26,7 +26,6 @@ class StatusCardView: UIView {
private var isGrayscale = false
private var hStack: UIStackView!
private var vStack: UIStackView!
private var titleLabel: UILabel!
private var descriptionLabel: UILabel!
private var domainLabel: UILabel!
@ -71,7 +70,7 @@ class StatusCardView: UIView {
domainLabel.numberOfLines = 1
domainLabel.textColor = .tintColor
vStack = UIStackView(arrangedSubviews: [
let vStack = UIStackView(arrangedSubviews: [
titleLabel,
descriptionLabel,
domainLabel,
@ -189,13 +188,6 @@ class StatusCardView: UIView {
} else {
domainLabel.isHidden = true
}
let titleHeight = titleLabel.isHidden ? 0 : titleLabel.sizeThatFits(CGSize(width: titleLabel.bounds.width, height: UIView.layoutFittingCompressedSize.height)).height
let descriptionHeight = descriptionLabel.isHidden ? 0 : descriptionLabel.sizeThatFits(CGSize(width: descriptionLabel.bounds.width, height: UIView.layoutFittingCompressedSize.height)).height
let domainLabel = domainLabel.isHidden ? 0 : domainLabel.sizeThatFits(CGSize(width: domainLabel.bounds.width, height: UIView.layoutFittingCompressedSize.height)).height
if titleHeight + descriptionHeight + domainLabel > vStack.bounds.height {
descriptionLabel.isHidden = true
}
}
private func loadBlurHash() {