disp/gl: Fix cursor hide keybind

Now it shows correctly in help and also works through terminal

(cherry picked from commit 59c2f5b974)
This commit is contained in:
Martin Piatka
2026-01-06 13:58:43 +01:00
parent 1d91f55bcf
commit f1384bdec7

View File

@@ -361,7 +361,7 @@ static constexpr pair<int64_t, string_view> keybindings[] = {
pair<int64_t, string_view>{K_ALT('d'), "toggle deinterlace"},
pair<int64_t, string_view>{K_ALT('p'), "pause video"},
pair<int64_t, string_view>{K_ALT('s'), "screenshot"},
pair<int64_t, string_view>{K_ALT('c'), "show/hide cursor"},
pair<int64_t, string_view>{K_ALT('m'), "force show/hide cursor (default is autohide when not moving)"},
pair<int64_t, string_view>{K_CTRL_DOWN, "make window 10% smaller"},
pair<int64_t, string_view>{K_CTRL_UP, "make window 10% bigger"}
};