diff options
author | donal.k.fellows@manchester.ac.uk <dkf> | 2001-11-05 10:13:53 (GMT) |
---|---|---|
committer | donal.k.fellows@manchester.ac.uk <dkf> | 2001-11-05 10:13:53 (GMT) |
commit | f7a384796fe817c67a1f00ed047a7f5faaf30a87 (patch) | |
tree | 29412b5bbd1a0e5fc46f272ea981b7c2ceb0d0db /library/demos/dialog2.tcl | |
parent | 8f3174a4424f78364a4e2c8e2b48ef0ae5684c8c (diff) | |
download | tk-f7a384796fe817c67a1f00ed047a7f5faaf30a87.zip tk-f7a384796fe817c67a1f00ed047a7f5faaf30a87.tar.gz tk-f7a384796fe817c67a1f00ed047a7f5faaf30a87.tar.bz2 |
Minor fixes from wohnivec@iol.cz Thanks!
Diffstat (limited to 'library/demos/dialog2.tcl')
-rw-r--r-- | library/demos/dialog2.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/demos/dialog2.tcl b/library/demos/dialog2.tcl index 0252ee0..502ac8b 100644 --- a/library/demos/dialog2.tcl +++ b/library/demos/dialog2.tcl @@ -2,7 +2,7 @@ # # This demonstration script creates a dialog box with a global grab. # -# RCS: @(#) $Id: dialog2.tcl,v 1.2 1998/09/14 18:23:27 stanton Exp $ +# RCS: @(#) $Id: dialog2.tcl,v 1.3 2001/11/05 10:13:53 dkf Exp $ after idle { .dialog2.msg configure -wraplength 4i @@ -10,7 +10,7 @@ after idle { after 100 { grab -global .dialog2 } -set i [tk_dialog .dialog2 "Dialog with local grab" {This dialog box uses a global grab, so it prevents you from interacting with anything on your display until you invoke one of the buttons below. Global grabs are almost always a bad idea; don't use them unless you're truly desperate.} warning 0 OK Cancel {Show Code}] +set i [tk_dialog .dialog2 "Dialog with global grab" {This dialog box uses a global grab, so it prevents you from interacting with anything on your display until you invoke one of the buttons below. Global grabs are almost always a bad idea; don't use them unless you're truly desperate.} warning 0 OK Cancel {Show Code}] switch $i { 0 {puts "You pressed OK"} |