Merge pull request #5420 from Cacodemon345/qt-fullscreen

Don't attempt altering window position if fullscreen
This commit is contained in:
Miran Grča
2025-04-01 21:26:05 +02:00
committed by GitHub

View File

@@ -803,7 +803,7 @@ MainWindow::resizeEvent(QResizeEvent *event)
{
//qDebug() << pos().x() + event->size().width();
//qDebug() << pos().y() + event->size().height();
if (vid_resize == 1)
if (vid_resize == 1 || video_fullscreen)
return;
int newX = pos().x();