mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-08 02:25:59 +01:00
idle: fix reverse flag for new idle protocol
This commit is contained in:
parent
06f5910365
commit
459afcc47f
1 changed files with 3 additions and 3 deletions
|
@ -2442,7 +2442,7 @@ void CCompositor::notifyIdleActivity() {
|
|||
wlr_idle_notifier_v1_notify_activity(g_pCompositor->m_sWLRIdleNotifier, g_pCompositor->m_sSeat.seat);
|
||||
}
|
||||
|
||||
void CCompositor::setIdleActivityInhibit(bool inhibit) {
|
||||
wlr_idle_set_enabled(g_pCompositor->m_sWLRIdle, g_pCompositor->m_sSeat.seat, inhibit);
|
||||
wlr_idle_notifier_v1_set_inhibited(g_pCompositor->m_sWLRIdleNotifier, inhibit);
|
||||
void CCompositor::setIdleActivityInhibit(bool enabled) {
|
||||
wlr_idle_set_enabled(g_pCompositor->m_sWLRIdle, g_pCompositor->m_sSeat.seat, enabled);
|
||||
wlr_idle_notifier_v1_set_inhibited(g_pCompositor->m_sWLRIdleNotifier, !enabled);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue