summaryrefslogtreecommitdiff
path: root/Userland/Services/WindowServer/WMClientConnection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Services/WindowServer/WMClientConnection.cpp')
-rw-r--r--Userland/Services/WindowServer/WMClientConnection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/WindowServer/WMClientConnection.cpp b/Userland/Services/WindowServer/WMClientConnection.cpp
index d1174d0c37..e1ca5d2b17 100644
--- a/Userland/Services/WindowServer/WMClientConnection.cpp
+++ b/Userland/Services/WindowServer/WMClientConnection.cpp
@@ -96,7 +96,7 @@ void WMClientConnection::start_window_resize(i32 client_id, i32 window_id)
auto& window = *(*it).value;
// FIXME: We are cheating a bit here by using the current cursor location and hard-coding the left button.
// Maybe the client should be allowed to specify what initiated this request?
- WindowManager::the().start_window_resize(window, Screen::the().cursor_location(), MouseButton::Left);
+ WindowManager::the().start_window_resize(window, ScreenInput::the().cursor_location(), MouseButton::Left);
}
void WMClientConnection::set_window_minimized(i32 client_id, i32 window_id, bool minimized)