From 2132613c4b3b3a41d22de4e1b62c95fc3285658e Mon Sep 17 00:00:00 2001 From: cjee21 <77721854+cjee21@users.noreply.github.com> Date: Sun, 25 Jan 2026 01:46:33 +0800 Subject: [PATCH] Qt GUI: Make "Abort Opening" button really abort opening --- Source/GUI/Qt/mainwindow.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/GUI/Qt/mainwindow.cpp b/Source/GUI/Qt/mainwindow.cpp index 329d3141f..08bd495ca 100644 --- a/Source/GUI/Qt/mainwindow.cpp +++ b/Source/GUI/Qt/mainwindow.cpp @@ -514,6 +514,10 @@ void MainWindow::updateProgressBar () progressDialog->hide(); timer->stop(); + //Cancel MediaInfoLib parsing if canceled + if (progressDialog->wasCanceled()) + C->Menu_File_Open_Files_Begin(true); + delete progressDialog; progressDialog=NULL; delete timer; timer=NULL;