Merge pull request #6855 from aldelaro5/qt-render-min-width

Qt: allow to resize the render widget however wanted on render to main
This commit is contained in:
Léo Lam 2018-05-16 14:11:51 +02:00 committed by GitHub
commit 47fd8c6eff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -761,6 +761,7 @@ void MainWindow::ShowRenderWidget()
m_stack->setCurrentIndex(m_stack->addWidget(m_render_widget));
connect(Host::GetInstance(), &Host::RequestTitle, this, &MainWindow::setWindowTitle);
m_stack->setSizePolicy(QSizePolicy::Ignored, QSizePolicy::Ignored);
m_stack->repaint();
Host::GetInstance()->SetRenderFocus(isActiveWindow());
@ -786,6 +787,7 @@ void MainWindow::HideRenderWidget(bool reinit)
m_stack->removeWidget(m_render_widget);
m_render_widget->setParent(nullptr);
m_rendering_to_main = false;
m_stack->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred);
disconnect(Host::GetInstance(), &Host::RequestTitle, this, &MainWindow::setWindowTitle);
setWindowTitle(QString::fromStdString(Common::scm_rev_str));
}