diff options
author | fvogel <fvogelnew1@free.fr> | 2015-09-29 19:10:48 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2015-09-29 19:10:48 (GMT) |
commit | e7e95b939480e1862dd4c534da31c3cd75a3afae (patch) | |
tree | 30ada10cf1280aa22574e64a76d434a77cf3609c /tests/textWind.test | |
parent | cc8829c253eb7b3ecf6d07c9109924f28d592216 (diff) | |
parent | 47199fd8879caa8830088266d33b6c9380348668 (diff) | |
download | tk-e7e95b939480e1862dd4c534da31c3cd75a3afae.zip tk-e7e95b939480e1862dd4c534da31c3cd75a3afae.tar.gz tk-e7e95b939480e1862dd4c534da31c3cd75a3afae.tar.bz2 |
Fixed bug [1501749fff] - Crash on embedded window deletion bound to <Map> event
Diffstat (limited to 'tests/textWind.test')
-rw-r--r-- | tests/textWind.test | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/textWind.test b/tests/textWind.test index 79dca50..2e16f7b 100644 --- a/tests/textWind.test +++ b/tests/textWind.test @@ -1023,6 +1023,20 @@ test textWind-17.9 {peer widget window configuration} { set res } {{-window {} {} {} {}} {-window {} {} {} {}} {-window {} {} {} .t.f} {-window {} {} {} .tt.t.f}} +test textWind-18.1 {embedded window deletion triggered by a script bound to <Map>} { + catch {destroy .t .f} + pack [text .t] + for {set i 1} {$i < 100} {incr i} {.t insert end "Line $i\n"} + .t window create end -window [frame .f -background red -width 80 -height 80] + .t window create end -window [frame .f2 -background blue -width 80 -height 80] + bind .f <Map> {.t delete .f} + update + # this shall not crash (bug 1501749) + after 100 {.t yview end} + tkwait visibility .f2 + update +} {} + catch {destroy .t} option clear |