diff options
author | patthoyts@users.sourceforge.net <patthoyts> | 2006-03-17 11:13:13 (GMT) |
---|---|---|
committer | patthoyts@users.sourceforge.net <patthoyts> | 2006-03-17 11:13:13 (GMT) |
commit | f6ba929ad9452334e5f333c21a081514ec88387c (patch) | |
tree | 40cd21e974be96a8dfc98df93348ce5ccdb673d9 /library/scrlbar.tcl | |
parent | cbadae84f8e5f6e35f1ffe78bb76e2f425cc36d7 (diff) | |
download | tk-f6ba929ad9452334e5f333c21a081514ec88387c.zip tk-f6ba929ad9452334e5f333c21a081514ec88387c.tar.gz tk-f6ba929ad9452334e5f333c21a081514ec88387c.tar.bz2 |
bug #1451587: avoid using abbreviated sub-commands in
core scripts as this can cause problems with mega-widget
libraries like snit.
Diffstat (limited to 'library/scrlbar.tcl')
-rw-r--r-- | library/scrlbar.tcl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/scrlbar.tcl b/library/scrlbar.tcl index 57275f2..ec14473 100644 --- a/library/scrlbar.tcl +++ b/library/scrlbar.tcl @@ -3,7 +3,7 @@ # This file defines the default bindings for Tk scrollbar widgets. # It also provides procedures that help in implementing the bindings. # -# RCS: @(#) $Id: scrlbar.tcl,v 1.12 2005/09/10 14:53:20 das Exp $ +# RCS: @(#) $Id: scrlbar.tcl,v 1.13 2006/03/17 11:13:15 patthoyts Exp $ # # Copyright (c) 1994 The Regents of the University of California. # Copyright (c) 1994-1996 Sun Microsystems, Inc. @@ -22,7 +22,7 @@ if {[tk windowingsystem] eq "x11"} { bind Scrollbar <Enter> { if {$tk_strictMotif} { set tk::Priv(activeBg) [%W cget -activebackground] - %W config -activebackground [%W cget -background] + %W configure -activebackground [%W cget -background] } %W activate [%W identify %x %y] } @@ -37,7 +37,7 @@ bind Scrollbar <Motion> { bind Scrollbar <Leave> { if {$tk_strictMotif && [info exists tk::Priv(activeBg)]} { - %W config -activebackground $tk::Priv(activeBg) + %W configure -activebackground $tk::Priv(activeBg) } %W activate {} } |