Add changelog entry for the gizmos

This commit is contained in:
Robin Dunn
2017-12-06 13:38:41 -08:00
parent deb21aa2ed
commit aa70e1cfbd

View File

@@ -36,7 +36,7 @@ Changes in this release include the following:
item. Currently this is turned on for just GridCellCoordsArray, but others
can be switched in the future if needed. (#297)
* Add missing ``wx.GetLocale`` function. (#572)
* Add missing wx.GetLocale function. (#572)
* Add methods to wx.TextCtrl for output "file-like" compatibility. (#578)
@@ -67,6 +67,14 @@ Changes in this release include the following:
* Fix wx.EvtHandler.Unbind to work correctly when specifying the handler and
it is a bound method. (#624)
* Ported some of the classes in Classic's gizmos module from C++ to Python,
including LEDNumberCtrl, DynamicSashWindow, and TreeListCtrl. The classes
are now located in the wx.lib.gizmos package, with a compatibility module at
the old wx.gizmos location. Please note that this TreeListCtrl class is a
very different implementation than wx.dataview.TreeListCtrl, although there
is some overlap in purpose.