mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 08:45:58 +01:00
idle-inhibit: Always recheck idle inhibitors on creation and deletion (#5738)
Formatting
This commit is contained in:
parent
3878f806ff
commit
72e31d3335
1 changed files with 12 additions and 13 deletions
|
@ -8,22 +8,21 @@ void CInputManager::newIdleInhibitor(std::any inhibitor) {
|
|||
|
||||
Debug::log(LOG, "New idle inhibitor registered for surface {:x}", (uintptr_t)PINHIBIT->inhibitor->surface);
|
||||
|
||||
PINHIBIT->inhibitor->listeners.destroy = PINHIBIT->inhibitor->resource.lock()->events.destroy.registerListener(
|
||||
[this, PINHIBIT](std::any data) { std::erase_if(m_vIdleInhibitors, [PINHIBIT](const auto& other) { return other.get() == PINHIBIT; }); });
|
||||
PINHIBIT->inhibitor->listeners.destroy = PINHIBIT->inhibitor->resource.lock()->events.destroy.registerListener([this, PINHIBIT](std::any data) {
|
||||
std::erase_if(m_vIdleInhibitors, [PINHIBIT](const auto& other) { return other.get() == PINHIBIT; });
|
||||
recheckIdleInhibitorStatus();
|
||||
});
|
||||
|
||||
const auto PWINDOW = g_pCompositor->getWindowFromSurface(PINHIBIT->inhibitor->surface);
|
||||
|
||||
if (!PWINDOW) {
|
||||
Debug::log(WARN, "Inhibitor is for no window?");
|
||||
return;
|
||||
}
|
||||
|
||||
if (PWINDOW) {
|
||||
PINHIBIT->pWindow = PWINDOW;
|
||||
PINHIBIT->windowDestroyListener = PWINDOW->events.destroy.registerListener([PINHIBIT](std::any data) {
|
||||
Debug::log(WARN, "Inhibitor got its window destroyed before its inhibitor resource.");
|
||||
PINHIBIT->pWindow = nullptr;
|
||||
});
|
||||
|
||||
} else
|
||||
Debug::log(WARN, "Inhibitor is for no window?");
|
||||
recheckIdleInhibitorStatus();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue