forked from organicmaps/organicmaps
[core] save location state mode into settings.ini
This commit is contained in:
parent
4029fafab4
commit
637776083a
1 changed files with 8 additions and 0 deletions
|
@ -245,6 +245,8 @@ private:
|
|||
int m_idleFrames = 0;
|
||||
};
|
||||
|
||||
string const LocationStateMode = "LastLocationStateMode";
|
||||
|
||||
}
|
||||
|
||||
State::Params::Params()
|
||||
|
@ -264,6 +266,11 @@ State::State(Params const & p)
|
|||
{
|
||||
m_locationAreaColor = p.m_locationAreaColor;
|
||||
m_framework = p.m_framework;
|
||||
|
||||
int mode = 0;
|
||||
if (Settings::Get(LocationStateMode, mode))
|
||||
m_modeInfo = mode;
|
||||
|
||||
bool isBench = false;
|
||||
if (Settings::Get("IsBenchmarking", isBench) && isBench)
|
||||
m_modeInfo = UnknownPosition;
|
||||
|
@ -696,6 +703,7 @@ void State::SetModeInfo(uint16_t modeInfo)
|
|||
m_modeInfo = modeInfo;
|
||||
if (newMode != oldMode)
|
||||
{
|
||||
Settings::Set(LocationStateMode, static_cast<int>(GetMode()));
|
||||
CallStateModeListeners();
|
||||
AnimateStateTransition(oldMode, newMode);
|
||||
invalidate();
|
||||
|
|
Loading…
Add table
Reference in a new issue