forked from organicmaps/organicmaps
Call Framework::SetupMeasurementSystem for desktop app.
This commit is contained in:
parent
7895360167
commit
f3087c12fe
3 changed files with 12 additions and 0 deletions
|
@ -58,8 +58,10 @@ namespace qt
|
|||
m_pScale(0)
|
||||
{
|
||||
m_framework->InitStorage(storage);
|
||||
|
||||
m_timer = new QTimer(this);
|
||||
m_handle->setUpdatesEnabled(false);
|
||||
|
||||
#ifdef OMIM_OS_MAC
|
||||
m_videoTimer.reset(CreateAppleVideoTimer(bind(&DrawWidget::DrawFrame, this)));
|
||||
#else
|
||||
|
@ -89,6 +91,11 @@ namespace qt
|
|||
m_framework->Invalidate();
|
||||
}
|
||||
|
||||
void DrawWidget::UpdateAfterSettingsChanged()
|
||||
{
|
||||
m_framework->SetupMeasurementSystem();
|
||||
}
|
||||
|
||||
bool DrawWidget::LoadState()
|
||||
{
|
||||
pair<int, int> widthAndHeight;
|
||||
|
|
|
@ -104,6 +104,7 @@ namespace qt
|
|||
bool LoadState();
|
||||
|
||||
void UpdateNow();
|
||||
void UpdateAfterSettingsChanged();
|
||||
|
||||
void PrepareShutdown();
|
||||
|
||||
|
|
|
@ -119,6 +119,8 @@ MainWindow::MainWindow()
|
|||
ShowUpdateDialog();
|
||||
}
|
||||
#endif // NO_DOWNLOADER
|
||||
|
||||
m_pDrawWidget->UpdateAfterSettingsChanged();
|
||||
}
|
||||
|
||||
#if defined(Q_WS_WIN)
|
||||
|
@ -358,6 +360,8 @@ void MainWindow::OnPreferences()
|
|||
{
|
||||
PreferencesDialog dlg(this);
|
||||
dlg.exec();
|
||||
|
||||
m_pDrawWidget->UpdateAfterSettingsChanged();
|
||||
}
|
||||
|
||||
#ifndef NO_DOWNLOADER
|
||||
|
|
Loading…
Add table
Reference in a new issue