summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2009-11-15 21:09:21 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2009-11-15 21:09:21 (GMT)
commit9dc82c6457add87837cb3484b3c99611f8b4ddf3 (patch)
treef0198022fcc6ff1ea86683486a66a743634af6c8 /ChangeLog
parent09aec6f1d87b130dbe9c4392768cf9c16365a698 (diff)
downloadtk-9dc82c6457add87837cb3484b3c99611f8b4ddf3.zip
tk-9dc82c6457add87837cb3484b3c99611f8b4ddf3.tar.gz
tk-9dc82c6457add87837cb3484b3c99611f8b4ddf3.tar.bz2
Added note that the 'move' operation restores detached nodes.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog17
1 files changed, 11 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index fe653d1..65ee2fb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,19 +1,24 @@
+2009-11-15 Donal K. Fellows <dkf@users.sf.net>
+
+ * doc/ttk_treeview.n (detach): Added note that the 'move' operation
+ restores detached nodes.
+
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:
+ * 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].
+ + 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
- tkPlatDecls.h header file, which we insist extensions #include to
- gain access to the Tk_*HWND*() routines. [Bug 2886635].
+ * generic/tkPlatDecls.h: [Bug 2886635]: Restore C++
+ friendliness to the tkPlatDecls.h header file, which we insist
+ extensions #include to gain access to the Tk_*HWND*() routines.
2009-11-10 Andreas Kupries <andreask@activestate.com>