From: Dana Jansens Date: Wed, 29 Jan 2003 22:41:43 +0000 (+0000) Subject: dont show a handle if it cant be resized at all X-Git-Url: https://git.dogcows.com/gitweb?a=commitdiff_plain;ds=sidebyside;h=a7ccc544500fe84e707f6e511261276b819d8906;p=chaz%2Fopenbox dont show a handle if it cant be resized at all --- 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); }