forked from organicmaps/organicmaps
Merge pull request #4586 from VladiMihaylenko/master
[ios] Fixed recursion in MWMBookmarkCell.
This commit is contained in:
commit
0531b2894f
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