mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 12:46:00 +01:00
guard windows' validity in focuswindowbyclass
This commit is contained in:
parent
2c8cf6afc4
commit
45898a57c8
1 changed files with 3 additions and 0 deletions
|
@ -999,6 +999,9 @@ void CKeybindManager::focusWindowByClass(std::string clazz) {
|
|||
std::regex classCheck(clazz);
|
||||
|
||||
for (auto& w : g_pCompositor->m_lWindows) {
|
||||
if (!w.m_bIsMapped || w.m_bHidden)
|
||||
continue;
|
||||
|
||||
const auto windowClass = g_pXWaylandManager->getAppIDClass(&w);
|
||||
|
||||
if (!std::regex_search(windowClass, classCheck))
|
||||
|
|
Loading…
Reference in a new issue