From: Zhang Boyang Date: Thu, 16 Jan 2025 10:44:33 +0000 (+0800) Subject: qapi/ui: Fix documentation of upper bound value in InputMoveEvent X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=208bd4333583e6e3228e8601a4f1b52595dde291;p=qemu.git qapi/ui: Fix documentation of upper bound value in InputMoveEvent The upper bound of pointer position in InputMoveEvent should be 0x7fff, according to INPUT_EVENT_ABS_MAX. Signed-off-by: Zhang Boyang Message-ID: <20250116104433.12114-1-zhangboyang.id@gmail.com> Acked-by: Markus Armbruster [Phrasing tweak squashed in] Signed-off-by: Markus Armbruster --- diff --git a/qapi/ui.json b/qapi/ui.json index 460a26b981..c536d4e524 100644 --- a/qapi/ui.json +++ b/qapi/ui.json @@ -1133,7 +1133,7 @@ # @axis: Which axis is referenced by @value. # # @value: Pointer position. For absolute coordinates the valid range -# is 0 -> 0x7ffff +# is 0 to 0x7fff. # # Since: 2.0 ##