summaryrefslogtreecommitdiffstats
path: root/library/demos
diff options
context:
space:
mode:
authorpatthoyts <patthoyts@users.sourceforge.net>2010-01-04 22:13:59 (GMT)
committerpatthoyts <patthoyts@users.sourceforge.net>2010-01-04 22:13:59 (GMT)
commita580567464cda1d5a6116339acc707e451e7854e (patch)
tree70b7c79ca4189ad9f90d63481acd68c14b9a7609 /library/demos
parent4441ed9ba522a6ac303f5fece668096da1e4572f (diff)
downloadtk-a580567464cda1d5a6116339acc707e451e7854e.zip
tk-a580567464cda1d5a6116339acc707e451e7854e.tar.gz
tk-a580567464cda1d5a6116339acc707e451e7854e.tar.bz2
Bug 1958848: be more positive in canvas item demo
Diffstat (limited to 'library/demos')
-rw-r--r--library/demos/items.tcl4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/demos/items.tcl b/library/demos/items.tcl
index 0a5d7fa..c665be2 100644
--- a/library/demos/items.tcl
+++ b/library/demos/items.tcl
@@ -3,7 +3,7 @@
# This demonstration script creates a canvas that displays the
# canvas item types.
#
-# RCS: @(#) $Id: items.tcl,v 1.10 2009/02/11 15:17:25 dkf Exp $
+# RCS: @(#) $Id: items.tcl,v 1.11 2010/01/04 22:13:59 patthoyts Exp $
if {![info exists widgetDemo]} {
error "This script should be run from the \"widget\" demo."
@@ -288,6 +288,6 @@ proc itemDrag {c x y} {
# is invoked.
proc butPress {w color} {
- set i [$w create text 25c 18.1c -text "Ouch!!" -fill $color -anchor n]
+ set i [$w create text 25c 18.1c -text "Oooohhh!!" -fill $color -anchor n]
after 500 "$w delete $i"
}