From 8202beeb2b7167f26af1880d76a45f2ded578ae1 Mon Sep 17 00:00:00 2001 From: Mart G Date: Tue, 11 Oct 2022 17:03:11 +0200 Subject: WindowServer+LibGUI: Shrink window edge resize hot-spots The hot-spots for resizing a window by dragging its corner are now limited to a small area around the actual corner instead of an area with 1/3rd the length or width of the window. The hot-spots to resize a window while holding a modifier key and the right mouse button are unchanged. --- Userland/Libraries/LibGUI/Window.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Userland/Libraries/LibGUI/Window.h') diff --git a/Userland/Libraries/LibGUI/Window.h b/Userland/Libraries/LibGUI/Window.h index fddab1f195..4a45d3d299 100644 --- a/Userland/Libraries/LibGUI/Window.h +++ b/Userland/Libraries/LibGUI/Window.h @@ -14,6 +14,7 @@ #include #include #include +#include #include #include #include @@ -131,7 +132,7 @@ public: virtual void close(); void move_to_front(); - void start_interactive_resize(); + void start_interactive_resize(ResizeDirection resize_direction); Widget* main_widget() { return m_main_widget; } Widget const* main_widget() const { return m_main_widget; } -- cgit v1.2.3