wx.lib.mixins.listctrl: Patches from Toni Brkic:

* Bugfix for TextEditMixin when the view can't be scrolled
   * Enhancement for ListCtrlAutoWidthMixin, allowing it to manage
     the width of any column.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33131 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2005-03-28 20:04:50 +00:00
parent c1acc12983
commit 27ed367cb2
2 changed files with 58 additions and 18 deletions

View File

@@ -20,11 +20,20 @@ available.
Added GetCount, GetCountRGB, and GetCountColour methods to
wx.ImageHistogram.
wxMSW: wx.Window.Refresh changed to explicitly refresh all children
as well. Previously it was implicitly done because parents did not
clip thier children by default. Now that they always clip then
Refresh needed to do a recursive refresh. This also fixes the
Freeze/Thaw problems that some people had with 2.5.4.1.
wxMSW: wx.Window.Refresh changed to explicitly refresh all children as
well as the parent. Previously it was implicitly done because parents
did not clip their children by default. Now that they always clip
children then Refresh needed to be fixed to do a recursive refresh.
This also fixes the Freeze/Thaw problems that some people had with
2.5.4.1.
wx.SplitterWindow: Send EVT_SPLITTER_SASH_POS_CHANGED only once after
end of dragging and not after each CHANGING event (modified patch
#1076226)
wx.glcanvas.GLCanvas: applied patch fixing problems with X server
crash when using nVidia cards (patch 1155132)