diff options
author | hobbs <hobbs> | 2003-04-25 20:02:43 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2003-04-25 20:02:43 (GMT) |
commit | 986591ee07c1fe94eb147e55a1d234cfdae0232e (patch) | |
tree | 81941ec9a8e6e6d905ca00fee1b08991fd49d834 /library | |
parent | ac61e94f1ce8a66b3390232fd5ee69fa6e56ed38 (diff) | |
download | tk-986591ee07c1fe94eb147e55a1d234cfdae0232e.zip tk-986591ee07c1fe94eb147e55a1d234cfdae0232e.tar.gz tk-986591ee07c1fe94eb147e55a1d234cfdae0232e.tar.bz2 |
* library/bgerror.tcl: make bgerror dialog topmost on Windows to
prevent it being covered by other windows.
Diffstat (limited to 'library')
-rw-r--r-- | library/bgerror.tcl | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/library/bgerror.tcl b/library/bgerror.tcl index 0c423df..7884180 100644 --- a/library/bgerror.tcl +++ b/library/bgerror.tcl @@ -9,8 +9,8 @@ # Copyright (c) 1998-2000 by Ajuba Solutions. # All rights reserved. # -# RCS: @(#) $Id: bgerror.tcl,v 1.23 2002/08/31 06:12:28 das Exp $ -# $Id: bgerror.tcl,v 1.23 2002/08/31 06:12:28 das Exp $ +# RCS: @(#) $Id: bgerror.tcl,v 1.24 2003/04/25 20:02:43 hobbs Exp $ +# $Id: bgerror.tcl,v 1.24 2003/04/25 20:02:43 hobbs Exp $ namespace eval ::tk { namespace eval dialog { @@ -140,7 +140,10 @@ proc ::tk::dialog::error::bgerror err { wm iconname .bgerrorDialog ErrorDialog wm protocol .bgerrorDialog WM_DELETE_WINDOW { } - if {($tcl_platform(platform) eq "macintosh") + if {$tcl_platform(platform) eq "windows"} { + wm attributes .bgerrorDialog -topmost 1 + } + if {($tcl_platform(platform) eq "macintosh") || ([tk windowingsystem] eq "aqua")} { ::tk::unsupported::MacWindowStyle style .bgerrorDialog dBoxProc } |