mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 08:45:58 +01:00
ignore hidden in allfloat
This commit is contained in:
parent
e5a4c0c986
commit
df2956b411
1 changed files with 1 additions and 1 deletions
|
@ -1434,7 +1434,7 @@ void CKeybindManager::workspaceOpt(std::string args) {
|
|||
ptrs.push_back(w.get());
|
||||
|
||||
for (auto& w : ptrs) {
|
||||
if (!w->m_bIsMapped || w->m_iWorkspaceID != PWORKSPACE->m_iID)
|
||||
if (!w->m_bIsMapped || w->m_iWorkspaceID != PWORKSPACE->m_iID || w->isHidden())
|
||||
continue;
|
||||
|
||||
if (!w->m_bRequestsFloat && w->m_bIsFloating != PWORKSPACE->m_bDefaultFloating) {
|
||||
|
|
Loading…
Reference in a new issue