diff options
author | Ikalco <[email protected]> | 2024-05-07 10:07:50 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2024-05-07 16:07:50 +0100 |
commit | 6ccc22194ca2d16bd7dc4b7263f897a547c50e6b (patch) | |
tree | 55f8ea4b83bb99d6e6816d004171dfecfa4a51cf /src/debug/HyprCtl.cpp | |
parent | ec092bd601d9d351ff6ca34bd97f12055b2a4dd9 (diff) | |
download | Hyprland-6ccc22194ca2d16bd7dc4b7263f897a547c50e6b.tar.gz Hyprland-6ccc22194ca2d16bd7dc4b7263f897a547c50e6b.zip |
xkb: check value correctly with xkb_state_layout_index_is_active() (#5925)
Diffstat (limited to 'src/debug/HyprCtl.cpp')
-rw-r--r-- | src/debug/HyprCtl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug/HyprCtl.cpp b/src/debug/HyprCtl.cpp index 6382e899..d6e8608f 100644 --- a/src/debug/HyprCtl.cpp +++ b/src/debug/HyprCtl.cpp @@ -1084,7 +1084,7 @@ std::string switchXKBLayoutRequest(eHyprCtlOutputFormat format, std::string requ const auto LAYOUTS = xkb_keymap_num_layouts(PWLRKEYBOARD->keymap); xkb_layout_index_t activeLayout = 0; while (activeLayout < LAYOUTS) { - if (xkb_state_layout_index_is_active(PWLRKEYBOARD->xkb_state, activeLayout, XKB_STATE_LAYOUT_EFFECTIVE)) + if (xkb_state_layout_index_is_active(PWLRKEYBOARD->xkb_state, activeLayout, XKB_STATE_LAYOUT_EFFECTIVE) == 1) break; activeLayout++; |