From fe48c6cdc2ef25dc6ceafa89e8c0b6c410fee482 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubo=C5=A1=20Lu=C5=88=C3=A1k?= Date: Wed, 14 May 2003 17:10:50 +0000 Subject: [PATCH] #57990 too. svn path=/trunk/kdebase/kwin/; revision=225864 --- client.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client.cpp b/client.cpp index 724104deac..8b2d494334 100644 --- a/client.cpp +++ b/client.cpp @@ -1624,8 +1624,8 @@ bool Client::isResizable() const if ( ( xSizeHint.flags & PMaxSize) == 0 || (xSizeHint.flags & PMinSize ) == 0 ) return TRUE; - return ( xSizeHint.min_width != xSizeHint.max_width ) || - ( xSizeHint.min_height != xSizeHint.max_height ); + return ( xSizeHint.min_width < xSizeHint.max_width ) || + ( xSizeHint.min_height < xSizeHint.max_height ); } /*