diff --git a/Code/Tools/ProjectManager/Source/ProjectsScreen.cpp b/Code/Tools/ProjectManager/Source/ProjectsScreen.cpp index 38d3d3b751..e079d97a8b 100644 --- a/Code/Tools/ProjectManager/Source/ProjectsScreen.cpp +++ b/Code/Tools/ProjectManager/Source/ProjectsScreen.cpp @@ -41,6 +41,7 @@ #include #include #include +#include //#define DISPLAY_PROJECT_DEV_DATA true @@ -403,9 +404,11 @@ namespace O3DE::ProjectManager if (warningResult == QMessageBox::Yes) { + QGuiApplication::setOverrideCursor(QCursor(Qt::WaitCursor)); // Remove project from O3DE and delete from disk HandleRemoveProject(projectPath); ProjectUtils::DeleteProjectFiles(projectPath); + QGuiApplication::restoreOverrideCursor(); } } }