소스 검색

UI: Fix properties window size grip position on resize
To have its position updated, QDialog::resizeEvent must
be called.

HomeWorld 10 년 전
부모
커밋
db3b666df5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      obs/window-basic-properties.cpp

+ 1 - 1
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)