From e1b40efb22d273421a89532a1760ccbff2027185 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubo=C5=A1=20Lu=C5=88=C3=A1k?= Date: Sun, 9 Apr 2006 09:47:09 +0000 Subject: [PATCH] & -> && svn path=/trunk/KDE/kdebase/workspace/; revision=527756 --- clients/b2/b2client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/b2/b2client.cpp b/clients/b2/b2client.cpp index 37ef9b294d..9563174320 100644 --- a/clients/b2/b2client.cpp +++ b/clients/b2/b2client.cpp @@ -541,7 +541,7 @@ bool B2Client::mustDrawHandle() const if (drawSmallBorders && (maximizeMode() & MaximizeVertical)) { return false; } else { - return do_draw_handle & resizable; + return do_draw_handle && resizable; } }