From 760e050110f74b6f76454663d8d83b125713657e Mon Sep 17 00:00:00 2001 From: matheusgomesms Date: Mon, 28 Jul 2025 17:35:04 +0200 Subject: [PATCH] Update MWMObjectsCategorySelectorController.mm Fixes https://github.com/organicmaps/organicmaps/issues/10223 --- iphone/Maps/UI/Editor/MWMObjectsCategorySelectorController.mm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/iphone/Maps/UI/Editor/MWMObjectsCategorySelectorController.mm b/iphone/Maps/UI/Editor/MWMObjectsCategorySelectorController.mm index 812f0d16a..78afface1 100644 --- a/iphone/Maps/UI/Editor/MWMObjectsCategorySelectorController.mm +++ b/iphone/Maps/UI/Editor/MWMObjectsCategorySelectorController.mm @@ -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;