2024-08-15 04:59:18 +07:00
|
|
|
From c4690b1496ca34c416869d2932abfa112a93f188 Mon Sep 17 00:00:00 2001
|
2024-08-14 08:48:30 +07:00
|
|
|
From: chayleaf <chayleaf-git@pavluk.org>
|
|
|
|
Date: Wed, 14 Aug 2024 08:17:44 +0700
|
2024-08-15 09:06:06 +07:00
|
|
|
Subject: [PATCH 1/4] mobile: don't idle_notify for volume keys
|
2024-08-14 08:48:30 +07:00
|
|
|
|
|
|
|
---
|
|
|
|
sway/input/keyboard.c | 4 +++-
|
|
|
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
|
|
|
|
diff --git a/sway/input/keyboard.c b/sway/input/keyboard.c
|
|
|
|
index 8927287f..d42f62b0 100644
|
|
|
|
--- a/sway/input/keyboard.c
|
|
|
|
+++ b/sway/input/keyboard.c
|
|
|
|
@@ -404,7 +404,9 @@ static void handle_key_event(struct sway_keyboard *keyboard,
|
|
|
|
keyboard->seat_device->input_device->wlr_device;
|
|
|
|
char *device_identifier = input_device_get_identifier(wlr_device);
|
|
|
|
bool exact_identifier = keyboard->wlr->group != NULL;
|
|
|
|
- seat_idle_notify_activity(seat, IDLE_SOURCE_KEYBOARD);
|
|
|
|
+ if (event->keycode != XKB_KEY_XF86AudioLowerVolume && event->keycode != XKB_KEY_XF86AudioRaiseVolume) {
|
|
|
|
+ seat_idle_notify_activity(seat, IDLE_SOURCE_KEYBOARD);
|
|
|
|
+ }
|
|
|
|
bool input_inhibited = seat->exclusive_client != NULL ||
|
|
|
|
server.session_lock.locked;
|
|
|
|
struct sway_keyboard_shortcuts_inhibitor *sway_inhibitor =
|
|
|
|
--
|
2024-08-15 09:06:06 +07:00
|
|
|
2.45.2
|
2024-08-14 08:48:30 +07:00
|
|
|
|