forked from organicmaps/organicmaps
Check for null before animation
Signed-off-by: TobiPeterG <github.threefold020@passmail.net>
This commit is contained in:
parent
7e41a4ccb4
commit
a100a8ac50
1 changed files with 3 additions and 0 deletions
|
@ -283,6 +283,9 @@ public class PlacePageController extends Fragment implements
|
|||
*/
|
||||
private void animatePeekHeight(int peekHeight)
|
||||
{
|
||||
if (mCurrentWindowInsets == null) {
|
||||
return;
|
||||
}
|
||||
final int bottomInsets = mCurrentWindowInsets.getInsets(WindowInsetsCompat.Type.systemBars()).bottom;
|
||||
// Make sure to start from the current height of the place page
|
||||
final int parentHeight = ((View) mPlacePage.getParent()).getHeight();
|
||||
|
|
Loading…
Add table
Reference in a new issue