From f06b9449333e3bb53c169af91ba5eb85b44b2dc5 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Mon, 3 Feb 2003 04:51:10 +0000 Subject: Client::move moves the client to the position so that its *frame* will be at the given coordinates --- src/client.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/client.cc') diff --git a/src/client.cc b/src/client.cc index 1b3ad1a9..b409f9b4 100644 --- a/src/client.cc +++ b/src/client.cc @@ -1146,11 +1146,11 @@ void Client::internal_resize(Corner anchor, int w, int h, bool user, } -void Client::move(int x, int y, bool framepos) +void Client::move(int x, int y) { if (!(_functions & Func_Move)) return; - if (framepos) - frame->frameGravity(x, y); + frame->frameGravity(x, y); // get the client's position based on x,y for the + // frame internal_move(x, y); } -- cgit v1.2.3