diff options
author | jenglish <jenglish@flightlab.com> | 2008-02-23 18:41:03 (GMT) |
---|---|---|
committer | jenglish <jenglish@flightlab.com> | 2008-02-23 18:41:03 (GMT) |
commit | 6654ca14fff1fe29caf02e626fb790df3104bd91 (patch) | |
tree | 44fd63fc0f348539a846a76e241e28776afe8f62 /library | |
parent | 0c1706a93153b2af96989598d81c96c8ad692fb9 (diff) | |
download | tk-6654ca14fff1fe29caf02e626fb790df3104bd91.zip tk-6654ca14fff1fe29caf02e626fb790df3104bd91.tar.gz tk-6654ca14fff1fe29caf02e626fb790df3104bd91.tar.bz2 |
Arrange to deliver <<ComboboxSelected>> event after listbox is unposted,
as intended [Bug 1890211]. Clarified documentation.
Diffstat (limited to 'library')
-rw-r--r-- | library/ttk/combobox.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/ttk/combobox.tcl b/library/ttk/combobox.tcl index 401548c..2f4838f 100644 --- a/library/ttk/combobox.tcl +++ b/library/ttk/combobox.tcl @@ -1,5 +1,5 @@ # -# $Id: combobox.tcl,v 1.11 2007/12/13 15:27:08 dgp Exp $ +# $Id: combobox.tcl,v 1.12 2008/02/23 18:41:07 jenglish Exp $ # # Combobox bindings. # @@ -169,7 +169,7 @@ proc ttk::combobox::SelectEntry {cb index} { $cb current $index $cb selection range 0 end $cb icursor end - event generate $cb <<ComboboxSelected>> + event generate $cb <<ComboboxSelected>> -when mark } ## Scroll -- Mousewheel binding |