diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2007-05-11 12:10:17 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2007-05-11 12:10:17 (GMT) |
commit | 1accd097c0b26b731ca673d7c0c7a3a42e7d0839 (patch) | |
tree | 8c4b09846608707b6d1e2edbcfdc870d497bd0f5 /tests | |
parent | d9048eecb84b2e1a56f348e973645832ed540848 (diff) | |
download | tk-1accd097c0b26b731ca673d7c0c7a3a42e7d0839.zip tk-1accd097c0b26b731ca673d7c0c7a3a42e7d0839.tar.gz tk-1accd097c0b26b731ca673d7c0c7a3a42e7d0839.tar.bz2 |
Avoid font dependencies in the results
Diffstat (limited to 'tests')
-rw-r--r-- | tests/winButton.test | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/winButton.test b/tests/winButton.test index 8914023..1ffcc2f 100644 --- a/tests/winButton.test +++ b/tests/winButton.test @@ -8,7 +8,7 @@ # Copyright (c) 1998-1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: winButton.test,v 1.11 2004/06/24 12:45:44 dkf Exp $ +# RCS: @(#) $Id: winButton.test,v 1.12 2007/05/11 12:10:19 patthoyts Exp $ package require tcltest 2.1 eval tcltest::configure $argv @@ -37,8 +37,8 @@ test winbutton-1.1 {TkpComputeButtonGeometry procedure} {testImageType win} { image1 changed 0 0 0 0 60 40 label .b1 -image image1 -bd 4 -padx 0 -pady 2 button .b2 -image image1 -bd 4 -padx 0 -pady 2 - checkbutton .b3 -image image1 -bd 4 -padx 1 -pady 1 - radiobutton .b4 -image image1 -bd 4 -padx 2 -pady 0 + checkbutton .b3 -image image1 -bd 4 -padx 1 -pady 1 -font {{MS Sans Serif} 8} + radiobutton .b4 -image image1 -bd 4 -padx 2 -pady 0 -font {{MS Sans Serif} 8} pack .b1 .b2 .b3 .b4 update # with patch 463234 with native L&F enabled, this returns: @@ -52,8 +52,8 @@ test winbutton-1.2 {TkpComputeButtonGeometry procedure} win { deleteWindows label .b1 -bitmap question -bd 3 -padx 0 -pady 2 button .b2 -bitmap question -bd 3 -padx 0 -pady 2 - checkbutton .b3 -bitmap question -bd 3 -padx 1 -pady 1 - radiobutton .b4 -bitmap question -bd 3 -padx 2 -pady 0 + checkbutton .b3 -bitmap question -bd 3 -padx 1 -pady 1 -font {{MS Sans Serif} 8} + radiobutton .b4 -bitmap question -bd 3 -padx 2 -pady 0 -font {{MS Sans Serif} 8} pack .b1 .b2 .b3 .b4 update # with patch 463234 with native L&F enabled, this returns: |