On Sun, 1 Jun 1997, Robin Becker wrote:
> Under Win95+tcl8.0b1 with patch for the single : problem vtcl-1.10b goes
> haywire as soon as I open an existing project. Continuous minimising &
> unminimising of widgets. It's difficult to kill & I have locked the
> system several times. With vtcl-1.08 & vtcl-1.09 I'm not getting this
> problem.
oops. it looks like something is haywire with <Map> <Unmap> events
in tk8.x under windows. here's a patch to vt.tcl that seems to fix it:
diff -r1.15 vt.tcl
379,380c379,383
< bind .vTcl <Map> {vTcl:vtcl:remap}
< bind .vTcl <Unmap> {vTcl:vtcl:unmap}
---
> global tcl_platform
> if {$tcl_platform(platform) == "unix"} {
> bind .vTcl <Map> {vTcl:vtcl:remap}
> bind .vTcl <Unmap> {vTcl:vtcl:unmap}
> }
384,385c387,391
< bind .vTcl <Map> {}
< bind .vTcl <Unmap> {}
---
> global tcl_platform
> if {$tcl_platform(platform) == "unix"} {
> bind .vTcl <Map> {}
> bind .vTcl <Unmap> {}
> }
I'll change the versions of vtcl on the ftp and web site to reflect
the change.
-stewart-