diff options
author | fvogel <fvogelnew1@free.fr> | 2022-03-20 00:41:27 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2022-03-20 00:41:27 (GMT) |
commit | 3aa5a3b049995a30bba527275f4a52d1885409d1 (patch) | |
tree | 065c576d7c1a66ad648d535a96f0c18d4da09332 /tests/canvWind.test | |
parent | 3160bd7447d371ee375d1a75a71d9beb945c1f62 (diff) | |
download | tk-3aa5a3b049995a30bba527275f4a52d1885409d1.zip tk-3aa5a3b049995a30bba527275f4a52d1885409d1.tar.gz tk-3aa5a3b049995a30bba527275f4a52d1885409d1.tar.bz2 |
Fix error in [df2353f2]: PARENT_RECONFIG_PENDING is a container flag, not a content flag.
Diffstat (limited to 'tests/canvWind.test')
-rw-r--r-- | tests/canvWind.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/canvWind.test b/tests/canvWind.test index 9777427..750321e 100644 --- a/tests/canvWind.test +++ b/tests/canvWind.test @@ -139,7 +139,7 @@ test canvWind-1.4 {DisplayWinItem, windows off-screen horizontally} -setup { destroy .t } -result {{1 3} {1 -79} {0 -79} {1 255} {0 255}} -test canvWind-2.1 {DisplayWinItem, window gets destroyed duing <Configure>} -setup { +test canvWind-2.1 {DisplayWinItem, window gets destroyed during <Configure>} -setup { destroy .t } -body { toplevel .t @@ -149,7 +149,7 @@ test canvWind-2.1 {DisplayWinItem, window gets destroyed duing <Configure>} -set set id [.t.c create window 50 50 -window .t.c.f] update bind .t.c.f <Configure> {destroy .t.c.f} - .t.c coords $id 60 60 ; # crashes! + .t.c coords $id 60 60 ; # was crashing update } -cleanup { destroy .t |