Slight text tweak, and add issue number.

(cherry picked from commit 7abb3cd07a)
This commit is contained in:
Robin Dunn
2018-06-01 14:19:40 -07:00
parent 5702cda46f
commit 97691dcc13

View File

@@ -135,11 +135,6 @@ Changes in this release include the following:
* Detach wxControl in AuiToolbar from current sizer before attach to a new
one. (#843)
* Fix a bug in group management on wx.lib.masked.numctrl; previous code used
truediv ('/') to calculate _groupSpace, but in python 3.x this lead to a float
result, instead of an integer as one would expect. Using floordiv ('//')
instead, solve the problem.
* Fixed a problem in wx.lib.mixins.listctrl.TextEditMixin where the height of
the editor widget could be set to zero. (See discussion in #849)
@@ -151,6 +146,15 @@ Changes in this release include the following:
* Return original AGW window style in AuiToolBar.GetAGWWindowStyleFlag. (#870)
* Fix a bug in group management on wx.lib.masked.numctrl; the previous code used
truediv ('/') to calculate _groupSpace, but in python 3.x this leads to a float
result, instead of an integer as was expected. Using floordiv ('//') instead
to solve the problem. (#865)
4.0.1 "Lemonade"
----------------
* 2-Feb-2018