From b35e581f69fbf2d00c7c8db8eeb147a732225c7a Mon Sep 17 00:00:00 2001 From: George Staikos Date: Fri, 10 Jan 2003 04:03:57 +0000 Subject: [PATCH] This GeometryTip is not acceptable. - Make it "opt-in" configurable, not default to on - I have had instances of the widget being stuck on the screen and eventually causing a kwin crash - It conflicts nicely with konsole's resize widget svn path=/trunk/kdebase/kwin/; revision=198652 --- client.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/client.cpp b/client.cpp index 0ee6450ee1..4442b78e1d 100644 --- a/client.cpp +++ b/client.cpp @@ -1797,6 +1797,7 @@ void Client::mouseMoveEvent( QMouseEvent * e) drawbound( geom ); } +#if 0 // Position and Size display if (!geometryTip) geometryTip = new GeometryTip( this, &xSizeHint ); @@ -1806,6 +1807,7 @@ void Client::mouseMoveEvent( QMouseEvent * e) geometryTip->show(); geometryTip->raise(); } +#endif } else if ( isMove() && geom.topLeft() != geometry().topLeft() ) { geom.moveTopLeft( workspace()->adjustClientPosition( this, geom.topLeft() ) ); @@ -1827,6 +1829,7 @@ void Client::mouseMoveEvent( QMouseEvent * e) break; } +#if 0 // Position and Size display if (!geometryTip) geometryTip = new GeometryTip( this, &xSizeHint ); @@ -1836,6 +1839,7 @@ void Client::mouseMoveEvent( QMouseEvent * e) geometryTip->show(); geometryTip->raise(); } +#endif } if ( isMove() )