From a7ccc544500fe84e707f6e511261276b819d8906 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Wed, 29 Jan 2003 22:41:43 +0000 Subject: [PATCH] dont show a handle if it cant be resized at all --- src/client.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client.cc b/src/client.cc index 4c7de059..e55f681f 100644 --- a/src/client.cc +++ b/src/client.cc @@ -220,7 +220,7 @@ void Client::setupDecorAndFunctions() _functions |= Func_Close; } - if (_min_size.x() > _max_size.x() || _min_size.y() > _max_size.y()) { + if (!(_min_size.x() < _max_size.x() || _min_size.y() < _max_size.y())) { _decorations &= ~(Decor_Maximize | Decor_Handle); _functions &= ~(Func_Resize | Func_Maximize); } -- 2.44.0