From db3b666df51308785959cc5617dc9456dfa7a1cc Mon Sep 17 00:00:00 2001 From: HomeWorld Date: Mon, 5 Jan 2015 14:23:12 +0200 Subject: [PATCH] UI: Fix properties window size grip position on resize To have its position updated, QDialog::resizeEvent must be called. --- obs/window-basic-properties.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/obs/window-basic-properties.cpp b/obs/window-basic-properties.cpp index 116ec31ab..b578969af 100644 --- a/obs/window-basic-properties.cpp +++ b/obs/window-basic-properties.cpp @@ -138,7 +138,7 @@ void OBSBasicProperties::resizeEvent(QResizeEvent *event) resizeTimer = startTimer(100); } - UNUSED_PARAMETER(event); + QDialog::resizeEvent(event); } void OBSBasicProperties::timerEvent(QTimerEvent *event)