diff options
author | wart <wart@noemail.net> | 1999-11-12 23:55:16 (GMT) |
---|---|---|
committer | wart <wart@noemail.net> | 1999-11-12 23:55:16 (GMT) |
commit | 51cd0a24391f16f0c38a679b886e806acdc70d1d (patch) | |
tree | 96a96faf03522c970ff5942365d1970a1ecbab64 /tests/winFont.test | |
parent | b7178a6eca0f3c5600d4132b30de93cba6a0d866 (diff) | |
download | tk-51cd0a24391f16f0c38a679b886e806acdc70d1d.zip tk-51cd0a24391f16f0c38a679b886e806acdc70d1d.tar.gz tk-51cd0a24391f16f0c38a679b886e806acdc70d1d.tar.bz2 |
Added "wm geometry" calls in some tests that were waiting for the user to
place a window manually. The Tk test suite can now run on twm with no user
intervention.
FossilOrigin-Name: 8b087c35f7a2789eb1f253365aa0602397f5fc7e
Diffstat (limited to 'tests/winFont.test')
-rw-r--r-- | tests/winFont.test | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/winFont.test b/tests/winFont.test index 2c2798e..5fe5a57 100644 --- a/tests/winFont.test +++ b/tests/winFont.test @@ -10,7 +10,7 @@ # Copyright (c) 1998-1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: winFont.test,v 1.4 1999/04/16 01:51:43 stanton Exp $ +# RCS: @(#) $Id: winFont.test,v 1.5 1999/11/12 23:55:16 wart Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { source [file join [pwd] [file dirname [info script]] defs.tcl] @@ -20,6 +20,7 @@ catch {destroy .b} catch {font delete xyz} toplevel .b +wm geometry .b +0+0 update idletasks set courier {Courier 14} |