mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 21:17:01 +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();
|
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);
|
QWidget::showEvent(event);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue