forked from organicmaps/organicmaps
[ios] Fixed recursion in MWMBookmarkCell.
This commit is contained in:
parent
a85cd17c3e
commit
27cd92130a
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ NSString * const kTextViewContentSizeKeyPath = @"contentSize";
|
|||
auto const height = s.CGSizeValue.height;
|
||||
auto const boundedHeight = self.textViewHeight.constant;
|
||||
|
||||
if (height <= boundedHeight || self.isOpen)
|
||||
if (height < boundedHeight || self.isOpen)
|
||||
[self stateOpen:YES];
|
||||
else
|
||||
[self stateOpen:NO];
|
||||
|
|
Loading…
Add table
Reference in a new issue