diff options
author | fvogelnew1@free.fr <fvogel> | 2016-05-22 19:56:27 (GMT) |
---|---|---|
committer | fvogelnew1@free.fr <fvogel> | 2016-05-22 19:56:27 (GMT) |
commit | 07bba5deb7a8979db67b79f061677378e8c2baf6 (patch) | |
tree | c0e19f0fd9780994ce3ab84b4ef485a02a50dcc6 | |
parent | 99adc249498ee64ec47f81e859d9787261696a0c (diff) | |
download | tk-07bba5deb7a8979db67b79f061677378e8c2baf6.zip tk-07bba5deb7a8979db67b79f061677378e8c2baf6.tar.gz tk-07bba5deb7a8979db67b79f061677378e8c2baf6.tar.bz2 |
Fixed [109865fa01] - ttk::menubutton has an unprotected winfo
-rw-r--r-- | library/ttk/menubutton.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/ttk/menubutton.tcl b/library/ttk/menubutton.tcl index 093bb02..2be064c 100644 --- a/library/ttk/menubutton.tcl +++ b/library/ttk/menubutton.tcl @@ -57,7 +57,7 @@ if {[tk windowingsystem] eq "x11"} { bind TMenubutton <ButtonPress-1> \ { %W state pressed ; ttk::menubutton::Popdown %W } bind TMenubutton <ButtonRelease-1> \ - { %W state !pressed } + { if {[winfo exists %W]} { %W state !pressed } } } # PostPosition -- |