mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-22 15:25:58 +01:00
workspacerules: Do not check 'on-created-empty' if using a workspace windowrule (#8486)
This commit is contained in:
parent
cf18eca86d
commit
9d37b1b073
1 changed files with 1 additions and 1 deletions
|
@ -296,7 +296,7 @@ void Events::listener_mapWindow(void* owner, void* data) {
|
|||
auto pWorkspace = g_pCompositor->getWorkspaceByID(REQUESTEDWORKSPACEID);
|
||||
|
||||
if (!pWorkspace)
|
||||
pWorkspace = g_pCompositor->createNewWorkspace(REQUESTEDWORKSPACEID, PWINDOW->monitorID(), requestedWorkspaceName);
|
||||
pWorkspace = g_pCompositor->createNewWorkspace(REQUESTEDWORKSPACEID, PWINDOW->monitorID(), requestedWorkspaceName, false);
|
||||
|
||||
PWORKSPACE = pWorkspace;
|
||||
|
||||
|
|
Loading…
Reference in a new issue