forked from organicmaps/organicmaps
[qt] Fix for crash on start.
This commit is contained in:
parent
16b5af3b02
commit
96e6c97d8e
1 changed files with 2 additions and 2 deletions
|
@ -175,8 +175,8 @@ MainWindow::MainWindow(Framework & framework, bool apiOpenGLES3,
|
|||
};
|
||||
}
|
||||
|
||||
auto const width = static_cast<int>(screenshotParams->m_width);
|
||||
auto const height = static_cast<int>(screenshotParams->m_height);
|
||||
int const width = m_screenshotMode ? static_cast<int>(screenshotParams->m_width) : 0;
|
||||
int const height = m_screenshotMode ? static_cast<int>(screenshotParams->m_height) : 0;
|
||||
m_pDrawWidget = new DrawWidget(framework, apiOpenGLES3, std::move(screenshotParams), this);
|
||||
|
||||
setCentralWidget(m_pDrawWidget);
|
||||
|
|
Loading…
Add table
Reference in a new issue