make utility windows able to be resized

This commit is contained in:
Dana Jansens 2003-04-11 19:14:13 +00:00
parent 3342e14239
commit 6011fe9c95

View file

@ -846,14 +846,14 @@ void client_setup_decor_and_functions(Client *self)
break;
case Type_Dialog:
/* dialogs cannot be maximized */
case Type_Utility:
/* these windows cannot be maximized */
self->decorations &= ~Decor_Maximize;
self->functions &= ~Func_Maximize;
break;
case Type_Menu:
case Type_Toolbar:
case Type_Utility:
/* these windows get less functionality */
self->decorations &= ~(Decor_Iconify | Decor_Handle);
self->functions &= ~(Func_Iconify | Func_Resize);