Update of /cvsroot/win32forth/win32forth/src/lib
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv30594/src/lib
Modified Files:
toolbar.f
Log Message:
Rod: Changed On_BeginAdjust: to return false so that customizable toolbars now work when using a manifest for XP Visual Styles
Index: toolbar.f
===================================================================
RCS file: /cvsroot/win32forth/win32forth/src/lib/toolbar.f,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** toolbar.f 13 Sep 2006 09:34:57 -0000 1.5
--- toolbar.f 23 Nov 2006 18:52:32 -0000 1.6
***************
*** 22,25 ****
--- 22,29 ----
Change log:
+ November 23rd, 2006 - 18:45 - Rod
+ Changed On_BeginAdjust: to return false so that a toolbar is now restored
+ correctly when using a manifest for XP Visual Styles (ComCtl32.dll version 6)
+
September 12th, 2006 - 20:47 - gah
Added \in-system-ok to account for ?pairs being moved to system space
***************
*** 592,597 ****
:M On_BeginAdjust: ( -- f ) \ Beginning customization
true SaveRestore: self
! true
! ;M
:M On_EndAdjust: ( -- f ) \ User done with customization
--- 596,601 ----
:M On_BeginAdjust: ( -- f ) \ Beginning customization
true SaveRestore: self
! false \ ComCtl32.dll version 6 for XP requires false here
! ;M \ otherwise SaveRestore: restores an empty toolbar
:M On_EndAdjust: ( -- f ) \ User done with customization
|