mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-07 21:25:58 +01:00
Fixed crash on movetoworkspacesilent
This commit is contained in:
parent
4c2459861b
commit
b9f542a60f
1 changed files with 2 additions and 2 deletions
|
@ -107,7 +107,7 @@ void CEventManager::startThread() {
|
||||||
void CEventManager::postEvent(const SHyprIPCEvent event) {
|
void CEventManager::postEvent(const SHyprIPCEvent event) {
|
||||||
|
|
||||||
if (m_bIgnoreEvents) {
|
if (m_bIgnoreEvents) {
|
||||||
Debug::log(WARN, "Suppressed (ignoreevents true) event of type %s, content: %s");
|
Debug::log(WARN, "Suppressed (ignoreevents true) event of type %s, content: %s",event.event.c_str(), event.data.c_str());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue