--- CHANGELOG.orig Thu Feb 5 16:56:31 1998 +++ CHANGELOG Sat Mar 14 11:55:57 1998 @@ -7,6 +7,16 @@ ============ vtwm-5.4.N.tar.gz ============= hawkeyd@visi.com (D. J. Hawkey Jr. aka djhjr) + March 14 - 15, 1998 + [events.c] [menus.c] [version.c] + Fixed a bug where the window buttons would get painted with + the border color when the background color should have been + used. Applied a patch by Steve Ratcliffe (steve@root.co.uk) + to accomodate warping to a titlebar that isn't flush left. + + VTWM 5.4.4b released for public consumption. + vtwm-5.4.4a-to-5.4.4b.txt patch file released. + February 5, 1998 [*akefile*] [events.c] [menus.c] [util.c] [version.c] Applied patches submitted by Takeharu Kato @@ -15,6 +25,7 @@ constant in the XPM library. Tweaks to accomodate these made to the *akefile*s. + VTWM 5.4.4a released for public consumption. vtwm-5.4.4-to-5.4.4a.txt patch file released. February 2, 1998 --- events.c.orig Thu Feb 5 16:45:16 1998 +++ events.c Sat Mar 14 10:26:47 1998 @@ -1269,7 +1269,8 @@ tb->dstx, tb->dsty, 1); */ /* djhjr - 11/17/97 */ - if (Scr->ButtonColorIsFrame && Scr->Focus == Tmp_win) + /* added the test for window highlighting - djhjr - 3/14/97 */ + if (Scr->ButtonColorIsFrame && Scr->Focus == Tmp_win && Tmp_win->highlight) PaintTitleButtonHighlight(Tmp_win, tbw, True); else PaintTitleButton(Tmp_win, tbw); --- menus.c.orig Thu Feb 5 16:45:17 1998 +++ menus.c Sat Mar 14 07:50:47 1998 @@ -4289,7 +4289,11 @@ x = t->frame_width / 2; y = t->frame_height / 2; #else - x = t->title_width / 2 + ((Scr->use3Dborders) ? t->frame_bw3D : t->frame_bw); + /* + * Added 't->title_x + ' to handle titlebars that aren't flush left + * Submitted by Steve Ratcliffe + */ + x = t->title_x + t->title_width / 2 + ((Scr->use3Dborders) ? t->frame_bw3D : t->frame_bw); y = t->title_height / 2 + ((Scr->use3Dborders) ? t->frame_bw3D : t->frame_bw); #endif } --- version.c.orig Thu Feb 5 16:45:18 1998 +++ version.c Sat Mar 14 08:18:41 1998 @@ -43,5 +43,8 @@ /* djhjr - 2/5/98 char *Version = "Virtual Desktop TWM (VTWM) - X11R4-6 Release 5.4.4"; */ +/* djhjr - 3/14/98 char *Version = "Virtual Desktop TWM (VTWM) - X11R4-6 Release 5.4.4a"; +*/ +char *Version = "Virtual Desktop TWM (VTWM) - X11R4-6 Release 5.4.4b"; --- vtwm.man.orig Thu Feb 5 16:45:19 1998 +++ vtwm.man Sat Mar 14 07:58:26 1998 @@ -2019,5 +2019,6 @@ Jason Gloudon (XPM icons) ; Nicholas Jacobs ; Takeharu Kato ; +Steve Ratcliffe ; D. J. Hawkey Jr. (3D; maint) .\"==============================[The End]==============================