On Mon, 27 Feb 2012 at 15:47:12 +0400, Alexey I. Froloff wrote:
> (Window|Menu)Title(Min|Max)Height defaults options allow to set
> minimum and maximum titlebar height.
>
> For example, to force all titlebars to 24 pixels execute
> following commands:
>
> $ wdwrite WindowMaker WindowTitleMinHeight 24
> $ wdwrite WindowMaker WindowTitleMaxHeight 24
> $ wdwrite WindowMaker MenuTitleMinHeight 24
> $ wdwrite WindowMaker MenuTitleMaxHeight 24
Thanks for the patch, but it doesn't apply because it gets mangled by
the email server (or because you are using pgp)
Sending it attached should do the trick.
But can you please turn these (and others like these)
> + if(theight > *fwin->title_max_height) theight =
> *fwin->title_max_height;
into
if (theight > *fwin->title_max_height)
theight = *fwin->title_max_height;
because "if" is not a function (so you need a space after it) and the
convention is to have the statement on a new line.
--
To unsubscribe, send mail to [email protected].