diff options
| author | Zhang Boyang <zhangboyang.id@gmail.com> | 2025-01-16 18:44:33 +0800 |
|---|---|---|
| committer | Markus Armbruster <armbru@redhat.com> | 2025-02-10 15:45:04 +0100 |
| commit | 208bd4333583e6e3228e8601a4f1b52595dde291 (patch) | |
| tree | 439fa6df816d8ce96700487175cb919e1bf9c2f7 | |
| parent | e00e0d0bd7cf261da4eb45bd183d6ceb72c04ee2 (diff) | |
| download | focaccia-qemu-208bd4333583e6e3228e8601a4f1b52595dde291.tar.gz focaccia-qemu-208bd4333583e6e3228e8601a4f1b52595dde291.zip | |
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 <zhangboyang.id@gmail.com> Message-ID: <20250116104433.12114-1-zhangboyang.id@gmail.com> Acked-by: Markus Armbruster <armbru@redhat.com> [Phrasing tweak squashed in] Signed-off-by: Markus Armbruster <armbru@redhat.com>
| -rw-r--r-- | qapi/ui.json | 2 |
1 files changed, 1 insertions, 1 deletions
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 ## |