From 02f427a6cae9b2e9d26f7beb6fd9f1f57367044c Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Sat, 18 Nov 2023 00:38:31 +0100 Subject: WindowServer: Implement window resizing. Currently no event is sent to a client that a window is resized. This should be added when I can bother adding that functionality to the client applications also. --- userland/windowserver/ws.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'userland/windowserver/ws.h') diff --git a/userland/windowserver/ws.h b/userland/windowserver/ws.h index 6f8eee3..477f123 100644 --- a/userland/windowserver/ws.h +++ b/userland/windowserver/ws.h @@ -14,6 +14,8 @@ typedef struct { int y; int sx; int sy; + int buffer_sx; + int buffer_sy; } WINDOW; typedef struct { -- cgit v1.2.3