UI work for VSH (Windows and ImGui)

This commit is contained in:
Henrik Rydgård
2026-08-24 11:13:00 +02:00
parent 9de3eb1244
commit e9cdb2b20f
9 changed files with 19 additions and 2 deletions
+3
View File
@@ -131,6 +131,9 @@ void RecentFilesManager::Add(std::string_view filename) {
}
// Some things should not be added to recent, such as the VSH (which will have a separate UI for launching it)
if (endsWithNoCase(filename, "vshmain.prx")) {
return;
}
std::lock_guard<std::mutex> guard(cmdLock_);
cmds_.push(RecentCommand{ RecentCmd::Add, {}, std::make_unique<std::string>(filename) });