diff options
author | surles <surles@noemail.net> | 1998-06-11 14:21:52 (GMT) |
---|---|---|
committer | surles <surles@noemail.net> | 1998-06-11 14:21:52 (GMT) |
commit | c2c1cc56a5043bfaaad8d967596bf22f37bb86f3 (patch) | |
tree | 4238e407e17b37cffeb3cd222eb868b175a2d890 /tests | |
parent | 02076a4b9422b22b96cd1340f7c44f69ff39ea17 (diff) | |
download | tk-c2c1cc56a5043bfaaad8d967596bf22f37bb86f3.zip tk-c2c1cc56a5043bfaaad8d967596bf22f37bb86f3.tar.gz tk-c2c1cc56a5043bfaaad8d967596bf22f37bb86f3.tar.bz2 |
Changed the font used for testing to Courier from Helvetica. With the new measuring system, kerning exists when helvetica is used.
FossilOrigin-Name: c0dc9d2d799e960fb9b660aea6be3c0f09930ed3
Diffstat (limited to 'tests')
-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 a526470..dac8c9d 100644 --- a/tests/font.test +++ b/tests/font.test @@ -26,10 +26,10 @@ proc setup {} { update } -label .b.l -padx 0 -pady 0 -bd 0 -highlightthickness 0 -justify left -text "0" -font "Helvetica -12 bold" +label .b.l -padx 0 -pady 0 -bd 0 -highlightthickness 0 -justify left -text "0" -font "Courier -12" pack .b.l canvas .b.c -closeenough 0 -.b.c create text 0 0 -tags text -anchor nw -just left -font "Helvetica -12 bold" +.b.c create text 0 0 -tags text -anchor nw -just left -font "Courier -12" pack .b.c update |