diff options
author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2016-01-08 14:39:48 (GMT) |
---|---|---|
committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2016-01-08 14:39:48 (GMT) |
commit | 16751e9039736ce28f68f5c3fe52254d83319232 (patch) | |
tree | 4cf29d89db8421c07c639141d2472fdbf33a0ac9 /tests | |
parent | d42111ec6bda592e7a8b71a0b447446817c4980c (diff) | |
download | tk-16751e9039736ce28f68f5c3fe52254d83319232.zip tk-16751e9039736ce28f68f5c3fe52254d83319232.tar.gz tk-16751e9039736ce28f68f5c3fe52254d83319232.tar.bz2 |
Backout previous commit: it causes many event-related test-failures in Tk test suite
Diffstat (limited to 'tests')
-rw-r--r-- | tests/scrollbar.test | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/scrollbar.test b/tests/scrollbar.test index 8f92c93..c6a5a90 100644 --- a/tests/scrollbar.test +++ b/tests/scrollbar.test @@ -632,21 +632,6 @@ test scrollbar-9.1 {scrollbar widget vs hidden commands} { list [winfo children .] [interp hidden] } [list {} $l] -test scrollbar-10.1 {<MouseWheel> event on scrollbar} -constraints win -setup { - destroy .t .s -} -body { - pack [text .t -yscrollcommand {.s set}] -side left - for {set i 1} {$i < 100} {incr i} {.t insert end "Line $i\n"} - pack [scrollbar .s -command {.t yview}] -fill y -expand 1 -side left - update - focus -force .s - event generate .s <MouseWheel> -delta -120 - after 200 {set eventprocessed 1} ; vwait eventprocessed - .t index @0,0 -} -cleanup { - destroy .t .s -} -result {2.0} - catch {destroy .s} catch {destroy .t} |