summaryrefslogtreecommitdiffstats
path: root/library/ttk
diff options
context:
space:
mode:
authorpatthoyts <patthoyts@users.sourceforge.net>2011-03-19 02:02:49 (GMT)
committerpatthoyts <patthoyts@users.sourceforge.net>2011-03-19 02:02:49 (GMT)
commitdf466875b0f3eb256859b9029416cc17c6d5df1f (patch)
tree2f99ee8dbd95298ebdb8e68780c148bfd3151a1e /library/ttk
parent78668b4e6e9567e7f50f41fa6886eb77f9d9c01f (diff)
parent08a61ac6fb11482d670e2d8084326b7b6ba61f55 (diff)
downloadtk-df466875b0f3eb256859b9029416cc17c6d5df1f.zip
tk-df466875b0f3eb256859b9029416cc17c6d5df1f.tar.gz
tk-df466875b0f3eb256859b9029416cc17c6d5df1f.tar.bz2
[Bug 3223850] - button remains stuck when disabled as depressed on XP
If a button is disabled while the state is pressed, then the release event handler did not remove the pressed state. Modified the handler to always remove the pressed state while only calling invoke if !disabled. Reported-by: Thomas MENEZ <thomasmenez@users.sourceforge.net> Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
Diffstat (limited to 'library/ttk')
-rw-r--r--library/ttk/button.tcl2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/ttk/button.tcl b/library/ttk/button.tcl
index 3baefe2..22032e4 100644
--- a/library/ttk/button.tcl
+++ b/library/ttk/button.tcl
@@ -28,7 +28,7 @@ bind TButton <<Invoke>> { ttk::button::activate %W }
bind TButton <ButtonPress-1> \
{ %W instate !disabled { ttk::clickToFocus %W; %W state pressed } }
bind TButton <ButtonRelease-1> \
- { %W instate {pressed !disabled} { %W state !pressed; %W invoke } }
+ { %W instate pressed { %W state !pressed; %W instate !disabled { %W invoke } } }
bind TButton <Button1-Leave> \
{ %W state !pressed }
bind TButton <Button1-Enter> \