From 831f8eb7102847530fdaae44a7e0369176c0a2dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Date: Mon, 8 Jun 2026 16:41:42 +0400 Subject: [PATCH] hmp-commands.hx: fix button_state doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Right & middle buttons are inverted (see hmp_mouse_button) Acked-by: Dr. David Alan Gilbert Reviewed-by: Philippe Mathieu-Daudé Signed-off-by: Marc-André Lureau --- hmp-commands.hx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hmp-commands.hx b/hmp-commands.hx index 0d780e6da3..7ae2468a3d 100644 --- a/hmp-commands.hx +++ b/hmp-commands.hx @@ -752,13 +752,13 @@ ERST .name = "mouse_button", .args_type = "button_state:i", .params = "state", - .help = "change mouse button state (1=L, 2=M, 4=R)", + .help = "change mouse button state (1=L, 2=R, 4=M)", .cmd = hmp_mouse_button, }, SRST ``mouse_button`` *val* - Change the active mouse button state *val* (1=L, 2=M, 4=R). + Change the active mouse button state *val* (1=L, 2=R, 4=M). ERST {