summaryrefslogtreecommitdiffstats
path: root/tests/dialog.test
diff options
context:
space:
mode:
authorhobbs <hobbs>2001-08-22 17:29:23 (GMT)
committerhobbs <hobbs>2001-08-22 17:29:23 (GMT)
commitce114e255a0c035ea07b74552f8d4270b3fd998b (patch)
tree0b9fb29ebe277ac051f6e6c3dccb0d1378bb89a7 /tests/dialog.test
parent92d8bc2c4dedb897ba23410a317a969e376bd50c (diff)
downloadtk-ce114e255a0c035ea07b74552f8d4270b3fd998b.zip
tk-ce114e255a0c035ea07b74552f8d4270b3fd998b.tar.gz
tk-ce114e255a0c035ea07b74552f8d4270b3fd998b.tar.bz2
* tests/dialog.test (HitReturn): fixed failing dialog-2.1 test
because it wasn't always getting focus properly.
Diffstat (limited to 'tests/dialog.test')
-rw-r--r--tests/dialog.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/dialog.test b/tests/dialog.test
index 652d464..2fa194b 100644
--- a/tests/dialog.test
+++ b/tests/dialog.test
@@ -1,7 +1,7 @@
# This file is a Tcl script to test out Tk's "tk_dialog" command.
# It is organized in the standard fashion for Tcl tests.
#
-# RCS: @(#) $Id: dialog.test,v 1.1 2001/08/09 00:46:51 dgp Exp $
+# RCS: @(#) $Id: dialog.test,v 1.2 2001/08/22 17:29:23 hobbs Exp $
#
if {[lsearch [namespace children] ::tcltest] == -1} {
@@ -37,7 +37,7 @@ proc PressButton {btn} {
proc HitReturn {w} {
event generate $w <Enter>
- focus $w
+ focus -force $w
event generate $w <KeyPress> -keysym Return
}