forked from organicmaps/organicmaps
[iOS] Fixed crash after constraints updating.
This commit is contained in:
parent
75d185f946
commit
a69546a52c
1 changed files with 2 additions and 2 deletions
|
@ -261,8 +261,8 @@ using namespace std;
|
|||
self.myCategoryToolbar.hidden = YES;
|
||||
self.downloadedCategoryToolbar.hidden = NO;
|
||||
}
|
||||
self.showSearchBar.priority = searchAllowed ? UILayoutPriorityRequired : UILayoutPriorityDefaultLow;
|
||||
self.hideSearchBar.priority = searchAllowed ? UILayoutPriorityDefaultLow : UILayoutPriorityRequired;
|
||||
self.showSearchBar.priority = searchAllowed ? UILayoutPriorityRequired - 1 : UILayoutPriorityDefaultLow;
|
||||
self.hideSearchBar.priority = searchAllowed ? UILayoutPriorityDefaultLow : UILayoutPriorityRequired - 1;
|
||||
|
||||
[super viewWillAppear:animated];
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue