diff options
author | fvogel <fvogelnew1@free.fr> | 2015-11-08 21:07:23 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2015-11-08 21:07:23 (GMT) |
commit | 6709996ce64d8adb86276e974c83fd7c83bebfe5 (patch) | |
tree | ec2b3f74834da83c8db01b2957e5fd6ca344f5e2 /tests/font.test | |
parent | 59019dfc0edd40d06346a2cb1a867b9ccba3edce (diff) | |
parent | 62fb263392d24a967ebe14282b2a9199d44c5b3f (diff) | |
download | tk-6709996ce64d8adb86276e974c83fd7c83bebfe5.zip tk-6709996ce64d8adb86276e974c83fd7c83bebfe5.tar.gz tk-6709996ce64d8adb86276e974c83fd7c83bebfe5.tar.bz2 |
Fixed bug [220854fff] - Trailing tab characters in entry widgets are not displayed
Diffstat (limited to 'tests/font.test')
-rw-r--r-- | tests/font.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/font.test b/tests/font.test index abe6ebf..9e44a93 100644 --- a/tests/font.test +++ b/tests/font.test @@ -1526,11 +1526,11 @@ test font-24.10 {Tk_ComputeTextLayout: tab caused break} -body { set x {} .t.l config -text "000\t" update - lappend x [expr {[winfo reqwidth .t.l] eq [expr {$ax * 3}]}] + lappend x [expr {[winfo reqwidth .t.l] eq [expr {$ax * 8}]}] lappend x [expr {[winfo reqheight .t.l] eq $ay}] .t.l config -text "000\t00" -wrap [expr $ax * 6] update - lappend x [expr {[winfo reqwidth .t.l] eq [expr {$ax * 3}]}] + lappend x [expr {[winfo reqwidth .t.l] eq [expr {$ax * 8}]}] lappend x [expr {[winfo reqheight .t.l] eq [expr {$ay * 2}]}] return $x } -cleanup { |