diff options
| author | Ivan Molodetskikh <yalterz@gmail.com> | 2025-08-21 15:02:25 +0300 |
|---|---|---|
| committer | Ivan Molodetskikh <yalterz@gmail.com> | 2025-08-26 21:03:54 +0300 |
| commit | 1f76dce345153d7da95262773c317446c1f6fc32 (patch) | |
| tree | 518ba49abb67f2d9f2f32d8201662c8343aa19fe /src/input | |
| parent | e1afa712385bc4f2124a3bb7438743d3fdc1854a (diff) | |
| download | niri-1f76dce345153d7da95262773c317446c1f6fc32.tar.gz niri-1f76dce345153d7da95262773c317446c1f6fc32.tar.bz2 niri-1f76dce345153d7da95262773c317446c1f6fc32.zip | |
Implement screen reader announcements via AccessKit
Diffstat (limited to 'src/input')
| -rw-r--r-- | src/input/mod.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/input/mod.rs b/src/input/mod.rs index 6921eaa1..a2fc3e05 100644 --- a/src/input/mod.rs +++ b/src/input/mod.rs @@ -1842,6 +1842,9 @@ impl State { Action::ShowHotkeyOverlay => { if self.niri.hotkey_overlay.show() { self.niri.queue_redraw_all(); + + #[cfg(feature = "dbus")] + self.niri.a11y_announce_hotkey_overlay(); } } Action::MoveWorkspaceToMonitorLeft => { |
