0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 04:42:18 +02:00

UI: Fix properties window size grip position on resize

To have its position updated, QDialog::resizeEvent must
be called.
This commit is contained in:
HomeWorld 2015-01-05 14:23:12 +02:00
parent 24776b7f65
commit db3b666df5

View File

@ -138,7 +138,7 @@ void OBSBasicProperties::resizeEvent(QResizeEvent *event)
resizeTimer = startTimer(100);
}
UNUSED_PARAMETER(event);
QDialog::resizeEvent(event);
}
void OBSBasicProperties::timerEvent(QTimerEvent *event)