From: George H. <geo...@us...> - 2013-11-28 19:46:33
|
Update of /cvsroot/win32forth/win32forth/src/lib In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv29647 Modified Files: HtmlDisplayWindow.f Log Message: Modified to get all the winrect parameters for the client area before getting the height of the rebar (which also uses winrect) to avoid conflict. Index: HtmlDisplayWindow.f =================================================================== RCS file: /cvsroot/win32forth/win32forth/src/lib/HtmlDisplayWindow.f,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** HtmlDisplayWindow.f 15 Nov 2013 19:35:04 -0000 1.10 --- HtmlDisplayWindow.f 28 Nov 2013 19:46:29 -0000 1.11 *************** *** 220,227 **** winRect GetClientRect: self ! Left: winRect ! ShowToolbar? if Height: HtmlRebar 2 - else Top: winRect then ! Right: winRect ! Bottom: winRect ShowToolbar? if Height: HtmlRebar - 1+ then Move: HtmlControl --- 220,226 ---- winRect GetClientRect: self ! Left: winRect Top: winRect Right: winRect Bottom: winRect 2>r ! ShowToolbar? if drop Height: HtmlRebar 2 - then ! 2r> ShowToolbar? if Height: HtmlRebar - 1+ then Move: HtmlControl |