diff options
author | drh <drh@sqlite.org> | 2000-09-30 18:46:03 (GMT) |
---|---|---|
committer | drh <drh@sqlite.org> | 2000-09-30 18:46:03 (GMT) |
commit | 550ed6e220a4b17dd1059ff841b5f416b73f4195 (patch) | |
tree | 045db8b798a5b1731268d029d0215b8e98307778 /tests | |
parent | 8db7bc8b95f4cd5d184dfb92a9750cb8dbf68928 (diff) | |
download | tk-550ed6e220a4b17dd1059ff841b5f416b73f4195.zip tk-550ed6e220a4b17dd1059ff841b5f416b73f4195.tar.gz tk-550ed6e220a4b17dd1059ff841b5f416b73f4195.tar.bz2 |
Fix bitmaps so that the same bitmap will not be used
on two difference screens of the same display. Without
this fix you get a BadMatch error from the X-server when
you try to use a bitmap on two screens at once.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/menu.test | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/menu.test b/tests/menu.test index 4b346ac..fa3a049 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.4 2000/05/11 22:37:05 hobbs Exp $ +# RCS: @(#) $Id: menu.test,v 1.5 2000/09/30 18:46:04 drh Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { source [file join [pwd] [file dirname [info script]] defs.tcl] @@ -2449,6 +2449,8 @@ test menu-35.1 {menus on multiple screens - crashes tk8.3.1, Bug 5454} { menu .two.m destroy .one destroy .two + } else { + puts "skipping: Multi-screen tests requiring TK_ALT_DISPLAY..." } } {} |