Call Framework::SetupMeasurementSystem for desktop app.

This commit is contained in:
vng 2011-10-26 21:05:54 +03:00 committed by Alex Zolotarev
parent 7895360167
commit f3087c12fe
3 changed files with 12 additions and 0 deletions

View file

@ -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;

View file

@ -104,6 +104,7 @@ namespace qt
bool LoadState();
void UpdateNow();
void UpdateAfterSettingsChanged();
void PrepareShutdown();

View file

@ -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