1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 17:27:35 +00:00

WindowServer/LibGUI: Enforce minimum window size

This commit is contained in:
Linus Groh 2020-04-18 19:56:56 +01:00 committed by Andreas Kling
parent 71d6459b7f
commit 3474d7c88e
3 changed files with 22 additions and 10 deletions

View file

@ -48,7 +48,7 @@ endpoint WindowServer = 2
SetWindowTitle(i32 window_id, String title) => ()
GetWindowTitle(i32 window_id) => (String title)
SetWindowRect(i32 window_id, Gfx::Rect rect) => ()
SetWindowRect(i32 window_id, Gfx::Rect rect) => (Gfx::Rect rect)
GetWindowRect(i32 window_id) => (Gfx::Rect rect)
InvalidateRect(i32 window_id, Vector<Gfx::Rect> rects, bool ignore_occlusion) =|