diff options
author | culler <culler> | 2019-01-31 22:00:31 (GMT) |
---|---|---|
committer | culler <culler> | 2019-01-31 22:00:31 (GMT) |
commit | 25dfb62ab6c1f942344631c852e0dfce78f0a360 (patch) | |
tree | 51b9ebf27db4779d4845f4946a88a146c30cdbcc /tests | |
parent | dcf8f65baa1a666ad952e8690b43af762eaaaef1 (diff) | |
download | tk-25dfb62ab6c1f942344631c852e0dfce78f0a360.zip tk-25dfb62ab6c1f942344631c852e0dfce78f0a360.tar.gz tk-25dfb62ab6c1f942344631c852e0dfce78f0a360.tar.bz2 |
Changes which make unixEmbed-8.1a pass on macOS.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unixEmbed.test | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/unixEmbed.test b/tests/unixEmbed.test index 1687a29..a736e24 100644 --- a/tests/unixEmbed.test +++ b/tests/unixEmbed.test @@ -1130,19 +1130,19 @@ test unixEmbed-8.1a {TkpClaimFocus procedure} -constraints unix -setup { frame .f1 -container 1 -width 200 -height 50 frame .f2 -width 200 -height 50 pack .f1 .f2 + update slave alias w1 winfo id .f1 slave eval { destroy [winfo child .] toplevel .t1 -use [w1] -highlightthickness 2 -bd 2 -relief sunken } + # This should clear focus from the application embedded in .f1 focus -force .f2 update list [slave eval { - focus .t1 set x [list [focus]] - update - after 500 - update + focus .t1 + update lappend x [focus] }] [focus] } -cleanup { |