mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-22 20:45:59 +01:00
Merge pull request #245 from taylor85345/main
Fixed crash on movetoworkspacesilent
This commit is contained in:
commit
d614fa895e
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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -116,4 +116,4 @@ void CEventManager::postEvent(const SHyprIPCEvent event) {
|
||||||
m_dQueuedEvents.push_back(ev);
|
m_dQueuedEvents.push_back(ev);
|
||||||
eventQueueMutex.unlock();
|
eventQueueMutex.unlock();
|
||||||
}, event).detach();
|
}, event).detach();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue