Don't attempt altering window position if fullscreen

This commit is contained in:
Cacodemon345
2025-04-02 00:33:24 +06:00
parent b644016d1e
commit ee71952e02

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();