fix: Prevent providers to be created via "Open Recent" menu while tasks are running

This commit is contained in:
WerWolv
2025-09-17 20:56:28 +02:00
parent 725cc10a92
commit 8f981e7707

View File

@@ -387,6 +387,8 @@ namespace hex::plugin::builtin::recent {
menu::endMenu();
}
}, [] {
return TaskManager::getRunningTaskCount() == 0 && !s_recentEntriesUpdating && !s_recentEntries.empty();
});
}
}