mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-22 21:06:01 +01:00
dispatchers: fix missing log param
This commit is contained in:
parent
c62ab1bee7
commit
785fc8d669
1 changed files with 2 additions and 2 deletions
|
@ -1451,9 +1451,9 @@ void CKeybindManager::toggleSpecialWorkspace(std::string args) {
|
|||
}
|
||||
|
||||
if (requestedWorkspaceIsAlreadyOpen && specialOpenOnMonitor == workspaceID)
|
||||
Debug::log(LOG, "Toggling special workspace %d to closed");
|
||||
Debug::log(LOG, "Toggling special workspace %d to closed", workspaceID);
|
||||
else
|
||||
Debug::log(LOG, "Toggling special workspace %d to open");
|
||||
Debug::log(LOG, "Toggling special workspace %d to open", workspaceID);
|
||||
|
||||
if (requestedWorkspaceIsAlreadyOpen && specialOpenOnMonitor == workspaceID) {
|
||||
// already open on this monitor
|
||||
|
|
Loading…
Reference in a new issue