diff options
author | hobbs <hobbs> | 2000-05-11 22:37:05 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2000-05-11 22:37:05 (GMT) |
commit | 019b002c433bcd9f30920845f750845b0c047ef8 (patch) | |
tree | 5186d3f9e79d9d2c7d3b683a557385c781412add /tests/menu.test | |
parent | 5a144b535bc726066340b42e20955732a1ffabe3 (diff) | |
download | tk-019b002c433bcd9f30920845f750845b0c047ef8.zip tk-019b002c433bcd9f30920845f750845b0c047ef8.tar.gz tk-019b002c433bcd9f30920845f750845b0c047ef8.tar.bz2 |
* tests/menu.test:
* generic/tk3d.c:
* generic/tkColor.c:
* generic/tkCursor.c: corrected handling of 3DBorder, Cursor and
Color objects on multiple screens. [Bug: 5454]
Diffstat (limited to 'tests/menu.test')
-rw-r--r-- | tests/menu.test | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/tests/menu.test b/tests/menu.test index 7b8ba02..4b346ac 100644 --- a/tests/menu.test +++ b/tests/menu.test @@ -5,7 +5,7 @@ # Copyright (c) 1998-1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: menu.test,v 1.3 1999/04/16 01:51:39 stanton Exp $ +# RCS: @(#) $Id: menu.test,v 1.4 2000/05/11 22:37:05 hobbs Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { source [file join [pwd] [file dirname [info script]] defs.tcl] @@ -2438,20 +2438,21 @@ test menu-33.1 {menu vs command hiding} { # menu-34 MenuInit only called at boot time +# creating menus on two different screens then deleting the +# menu from the first screen crashes Tk8.3.1 +# +test menu-35.1 {menus on multiple screens - crashes tk8.3.1, Bug 5454} { + if {[info exists ::env(TK_ALT_DISPLAY)]} { + toplevel .one + menu .one.m + toplevel .two -screen $::env(TK_ALT_DISPLAY) + menu .two.m + destroy .one + destroy .two + } +} {} + # cleanup deleteWindows ::tcltest::cleanupTests return - - - - - - - - - - - - - |