diff options
author | jenglish <jenglish@flightlab.com> | 2009-11-12 18:17:14 (GMT) |
---|---|---|
committer | jenglish <jenglish@flightlab.com> | 2009-11-12 18:17:14 (GMT) |
commit | 09aec6f1d87b130dbe9c4392768cf9c16365a698 (patch) | |
tree | 6a689306857a9896ab922345a0b5dea64df3e3ee /ChangeLog | |
parent | da2611425bfd7e8e60f4c170fed650cdd316b3b7 (diff) | |
download | tk-09aec6f1d87b130dbe9c4392768cf9c16365a698.zip tk-09aec6f1d87b130dbe9c4392768cf9c16365a698.tar.gz tk-09aec6f1d87b130dbe9c4392768cf9c16365a698.tar.bz2 |
[update] hygiene.
+ Where possible, replace [a; update; b] with [a ; after 0 b].
+ Where not possible, use [update idletasks] instead of full [update].
+ Use [after 0] in favor of [after idle] for delayed work,
to reduce likelihood of reentrancy issues in [update idletasks].
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -1,3 +1,14 @@ +2009-11-12 Joe English <jenglish@users.sourceforge.net> + + * library/ttk/button.tcl, library/ttk/combobox.tcl, + library/ttk/notebook.tcl, library/ttk/treeview.tcl: + [update] hygiene. + + + Where possible, replace [a; update; b] with [a ; after 0 b]. + + Where not possible, use [update idletasks] instead of full [update]. + + Use [after 0] in favor of [after idle] for delayed work, + to reduce likelihood of reentrancy issues in [update idletasks]. + 2009-11-11 Don Porter <dgp@users.sourceforge.net> * generic/tkPlatDecls.h: Restore C++ friendliness to the |