forked from organicmaps/organicmaps
Fixed crash on assert and warnings.
Conflicts: drape_frontend/navigator.cpp
This commit is contained in:
parent
227b48c667
commit
9ba43c7bc5
3 changed files with 4 additions and 4 deletions
|
@ -444,7 +444,6 @@ bool Navigator::ScaleImpl(m2::PointD const & newPt1, m2::PointD const & newPt2,
|
|||
screen.GtoPMatrix() * ScreenBase::CalcTransform(oldPt1 + offset, oldPt2 + offset,
|
||||
newPt1 + offset, newPt2 + offset,
|
||||
doRotateScreen);
|
||||
|
||||
ScreenBase tmp = screen;
|
||||
tmp.SetGtoPMatrix(newM);
|
||||
|
||||
|
|
|
@ -201,7 +201,8 @@ ScreenBase const & UserEventStream::ProcessEvents(bool & modelViewChange, bool &
|
|||
}
|
||||
break;
|
||||
case UserEvent::EVENT_DISABLE_PERSPECTIVE:
|
||||
SetDisable3dModeAnimation();
|
||||
if (m_navigator.Screen().isPerspective())
|
||||
SetDisable3dModeAnimation();
|
||||
break;
|
||||
default:
|
||||
ASSERT(false, ());
|
||||
|
|
|
@ -148,9 +148,9 @@ struct FollowAndRotateEvent
|
|||
struct EnablePerspectiveEvent
|
||||
{
|
||||
EnablePerspectiveEvent(double rotationAngle, double angleFOV, bool isAnim)
|
||||
: m_rotationAngle(rotationAngle)
|
||||
: m_isAnim(isAnim)
|
||||
, m_rotationAngle(rotationAngle)
|
||||
, m_angleFOV(angleFOV)
|
||||
, m_isAnim(isAnim)
|
||||
{}
|
||||
|
||||
bool m_isAnim;
|
||||
|
|
Loading…
Add table
Reference in a new issue