Update MWMObjectsCategorySelectorController.mm

Fixes https://github.com/organicmaps/organicmaps/issues/10223
This commit is contained in:
matheusgomesms
2025-07-28 17:35:04 +02:00
committed by Yannik Bloscheck
parent db4b46f8ad
commit 760e050110

View File

@@ -74,7 +74,7 @@ NSString * const kToEditorSegue = @"CategorySelectorToEditorSegue";
{
UIStackView * stackView = [[UIStackView alloc] init];
stackView.axis = UILayoutConstraintAxisVertical;
stackView.alignment = UIStackViewAlignmentCenter;
stackView.alignment = UIStackViewAlignmentFill;
stackView.translatesAutoresizingMaskIntoConstraints = NO;
stackView.spacing = 12;
self.searchResultsIsEmptyDisclaimer = stackView;
@@ -85,6 +85,7 @@ NSString * const kToEditorSegue = @"CategorySelectorToEditorSegue";
titleLabel.textAlignment = NSTextAlignmentCenter;
titleLabel.translatesAutoresizingMaskIntoConstraints = NO;
titleLabel.font = [UIFont bold17];
titleLabel.numberOfLines = 0;
UITextView * subtitleTextView = [[UITextView alloc] init];
subtitleTextView.translatesAutoresizingMaskIntoConstraints = NO;