diff options
author | fvogelnew1@free.fr <fvogel> | 2017-01-22 09:05:57 (GMT) |
---|---|---|
committer | fvogelnew1@free.fr <fvogel> | 2017-01-22 09:05:57 (GMT) |
commit | 316907cfe0a489a617878b9ec94c7fe26bfbd073 (patch) | |
tree | 93b7a120483a82949f06bf5e53fb0435e4a531f2 | |
parent | e49e5523130790eb062bd8788380deebc3daf066 (diff) | |
download | tk-316907cfe0a489a617878b9ec94c7fe26bfbd073.zip tk-316907cfe0a489a617878b9ec94c7fe26bfbd073.tar.gz tk-316907cfe0a489a617878b9ec94c7fe26bfbd073.tar.bz2 |
Fix [89a638af38]: OS X - textDisp-15.8 fails
-rw-r--r-- | tests/textDisp.test | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/textDisp.test b/tests/textDisp.test index d3de2d8..8342c46 100644 --- a/tests/textDisp.test +++ b/tests/textDisp.test @@ -1952,13 +1952,15 @@ test textDisp-15.8 {Scrolling near end of window} { .tf.f.t insert end "\nLine $i" } update ; after 1000 ; update + set refind [.tf.f.t index @0,[winfo height .tf.f.t]] # Should scroll and should not crash! .tf.f.t yview scroll 1 unit # Check that it has scrolled - set res [.tf.f.t index @0,[expr [winfo height .tf.f.t] - 15]] + set newind [.tf.f.t index @0,[winfo height .tf.f.t]] + set res [.tf.f.t compare $newind > $refind] destroy .tf set res -} {12.0} +} {1} .t configure -wrap char .t delete 1.0 end |