As I allready said in another medium, Richard, I think it would be
nice to change the address to the CTWM mailing list in the README file
in the distribution and, perhaps, erase Claude's e-mail address. Also,
adding a note about how to disable complaints about non-existing
libraries should be helpful. Just noting that people can comment out,
say, JPEGDEFINES, from the Makefile if they don't have libjpeg should
be enough, I think.
Also, in 3.7-alpha4 util.c, line 2207 in the function
Create3DResizeButton() it says
Draw3DBorder (image->pixmap, 0, 0, h, h, Scr->TitleButtonShadowDepth, cp, off,
True, False);
Draw3DBorder (image->pixmap, 0, h / 4, ((3 * h) / 4) + 1, ((3 * h) / 4) + 1, 2,
cp, off, True, False);
Draw3DBorder (image->pixmap, 0, h / 2, (h / 2) + 1, (h / 2) + 1, 2, cp, off, True,
False);
but I suggested this:
Draw3DBorder (image->pixmap, 0, 0, h, h, Scr->TitleButtonShadowDepth, cp, off,
True, False);
Draw3DBorder (image->pixmap, 0, h / 4, ((3 * h) / 4) + 1, ((3 * h) / 4) + 1,
Scr->TitleButtonShadowDepth,
cp, off, True, False);
Draw3DBorder (image->pixmap, 0, h / 2, (h / 2) + 1, (h / 2) + 1,
Scr->TitleButtonShadowDepth,
cp, off, True, False);
Why keep the constant when drawing the resize button? I realize that
setting the shadow depth to 0 would make the resize button oddly
blank...
I realize your effort to redo the :xpm:cross pixmap was to make it
more three dimensional, but on my display I must confess that it looks
a little like a swastika. Perhaps you have a better display than I do?
I don't run Gnome or KDE, so someone else will have to comment about
the desktop support.
All in all, 3.7-alpha4 seems to work for my configuration. I'll run it
for a couple of days and see if any bugs has crept in.