[nostalgia,studio] Proper fix for input filtering

This commit is contained in:
2025-01-20 02:10:48 -06:00
parent 67901ff748
commit 765d6d95f5
4 changed files with 14 additions and 2 deletions

View File

@@ -256,4 +256,7 @@ class FilePicker {
};
[[nodiscard]]
bool mainWinHasFocus() noexcept;
}

View File

@@ -208,4 +208,9 @@ void FilePicker::show() noexcept {
m_show = true;
}
bool s_mainWinHasFocus{};
bool mainWinHasFocus() noexcept {
return s_mainWinHasFocus;
}
}