Re: [PATCH v2 2/2] system/vl: Update description for input grab key

2024-02-22 Thread Tianlan Zhou
Cc qemu-stable, as this will fix the `qemu-system-xxx -h` help message. On 2024/2/22 3:52, Tianlan Zhou wrote: > Input grab key should be Ctrl-Alt-g, not just Ctrl-Alt. > > Signed-off-by: Tianlan Zhou > --- > system/vl.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(

[PATCH v2 0/2] Update description for input grab key

2024-02-21 Thread Tianlan Zhou
Input grab key should be Ctrl-Alt-g, not just Ctrl-Alt. v2: - Update help message in system/vl.c v1: - Initial patch Tianlan Zhou (2): docs/system: Update description for input grab key system/vl: Update description for input grab key docs/system/keys.rst.inc | 2 +- system/vl.c

[PATCH v2 1/2] docs/system: Update description for input grab key

2024-02-21 Thread Tianlan Zhou
Input grab key should be Ctrl-Alt-g, not just Ctrl-Alt. Signed-off-by: Tianlan Zhou --- docs/system/keys.rst.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/system/keys.rst.inc b/docs/system/keys.rst.inc index 2e2c97aa23..59966a3fe7 100644 --- a/docs/system

[PATCH v2 2/2] system/vl: Update description for input grab key

2024-02-21 Thread Tianlan Zhou
Input grab key should be Ctrl-Alt-g, not just Ctrl-Alt. Signed-off-by: Tianlan Zhou --- system/vl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/vl.c b/system/vl.c index a82555ae15..b8469d9965 100644 --- a/system/vl.c +++ b/system/vl.c @@ -891,7 +891,7 @@ static

[PATCH] docs/system: Fix key for input grab

2024-02-21 Thread Tianlan Zhou
Key for input grab should be Ctrl-Alt-g, not just Ctrl-Alt. Signed-off-by: Tianlan Zhou --- v1: - Initial patch --- docs/system/keys.rst.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/system/keys.rst.inc b/docs/system/keys.rst.inc index 2e2c97aa23..59966a3fe7

[PATCH v2] ui/console: Fix console resize with placeholder surface

2024-02-08 Thread Tianlan Zhou
ace's `QEMU_PLACEHOLDER_FLAG` flag is still set, so the console won't be displayed in SDL display mode. This patch fixes this problem by forcing a new surface if the old one is a placeholder. Reviewed-by: Marc-André Lureau Signed-off-by: Tianlan Zhou --- v2: - Slightly modify the commit message

[PATCH] ui/console: Fix console resize with placeholder surface

2024-02-07 Thread Tianlan Zhou
ace's `QEMU_PLACEHOLDER_FLAG` flag is still set, so the console won't be displayed in SDL display mode. This patch fixes this problem by forcing a new surface if the old one is a placeholder. Signed-off-by: Tianlan Zhou --- ui/console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion