mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 18:23:54 +02:00
Fix size of running scripts window
This commit is contained in:
parent
dcae9eb6da
commit
dd8f776525
1 changed files with 1 additions and 1 deletions
|
@ -165,7 +165,7 @@ void RunningScriptsWidget::showEvent(QShowEvent* event) {
|
|||
}
|
||||
|
||||
const QRect parentGeometry = parentWidget()->geometry();
|
||||
setGeometry(parentGeometry.topLeft().x(), parentGeometry.topLeft().y(), size().width(), parentWidget()->size().height());
|
||||
setGeometry(parentGeometry.topLeft().x(), parentGeometry.topLeft().y(), size().width(), parentWidget()->height());
|
||||
|
||||
QWidget::showEvent(event);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue