![]() |
Available news archives:
comp.lang.tcl
-
comp.lang.python
-
comp.security.firewalls
-
sci.crypt -
comp.lang.php -
comp.lang.javascript
|
|
comp.lang.tcl archiveRe: 4 modal dialog limit -- wm transient bug
From: <seannakasone@yahoo.com>
Date: Wed Mar 22 2006 - 20:58:16 CET
Yes, we originally had it as a single level transient, but we changed
proc opendlg3 {} {
wm transient .t.t.t . ;# this keeps .t on top of .
wm deiconify .t.t.t
proc opendlg2 {} {
wm transient .t.t . ;# this keeps .t on top of .
wm deiconify .t.t
proc opendlg {} {
wm transient .t . ;# this keeps .t on top of .
wm deiconify .t
button .b -text "multi-click me" -width 30 -height 30 -command
|