diff options
author | hobbs <hobbs> | 2001-03-30 07:04:58 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2001-03-30 07:04:58 (GMT) |
commit | fe669ce208870caf72df127b1cca6f16d5bc1b4a (patch) | |
tree | ad81f5e058f297dfda885ac7a2c04f51ea9479e5 /library | |
parent | cd56bcc2c36de8045f5cca34180cd072505ab2f7 (diff) | |
download | tk-fe669ce208870caf72df127b1cca6f16d5bc1b4a.zip tk-fe669ce208870caf72df127b1cca6f16d5bc1b4a.tar.gz tk-fe669ce208870caf72df127b1cca6f16d5bc1b4a.tar.bz2 |
* library/bgerror.tcl (bgerror): allow focus into details window
for Windows C&P to work. [Bug #220929]
Diffstat (limited to 'library')
-rw-r--r-- | library/bgerror.tcl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/library/bgerror.tcl b/library/bgerror.tcl index c2fd1df..51a9be3 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.13 2000/07/17 21:07:54 ericm Exp $ -# $Id: bgerror.tcl,v 1.13 2000/07/17 21:07:54 ericm Exp $ +# RCS: @(#) $Id: bgerror.tcl,v 1.14 2001/03/30 07:04:58 hobbs Exp $ +# $Id: bgerror.tcl,v 1.14 2001/03/30 07:04:58 hobbs Exp $ option add *ErrorDialog.function.text [::msgcat::mc "Save To Log"] \ widgetDefault @@ -172,6 +172,7 @@ proc bgerror err { pack $W.text -side left -expand yes -fill both $W.text insert 0.0 "$err\n$info" $W.text mark set insert 0.0 + bind $W.text <ButtonPress-1> { focus %W } $W.text configure -state disabled # 2. Fill the top part with bitmap and message |