From 186b4b54ac9b9ed36dd01e2e69411d6fd491007d Mon Sep 17 00:00:00 2001 From: Cristian Tibirna Date: Sun, 3 Mar 2002 16:30:33 +0000 Subject: [PATCH] CT: no electric borders when resizing. Done by Matthias Ettrich, reviewed and tested by me. svn path=/trunk/kdebase/kwin/; revision=140610 --- client.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/client.cpp b/client.cpp index 878f6ddd0a..b788e10115 100644 --- a/client.cpp +++ b/client.cpp @@ -1685,7 +1685,9 @@ void Client::mouseMoveEvent( QMouseEvent * e) break; } } - workspace()->clientMoved(globalPos, qt_x_time); + + if ( isMove() ) + workspace()->clientMoved(globalPos, qt_x_time); // QApplication::syncX(); // process our own configure events synchronously. }