hello, there seems to be an update flaw on the size of the toolbars (I’m on win7(64bit), python 2.7 (32bit), wxpy 2.9.4.0, aui just downloaded from svn).
You can reproduce it this way: in the agw.aui demo comment out these two lines
choice = wx.Choice(tb4, -1, choices=[“One choice”, “Another choice”])
tb4.AddControl(choice)
Then resize the wx.Frame dragging the right margin to the left so that the tb4 toolbar gets partly hidden. Finally maximize the wx.Frame with the standard control in the upper right corner of the wx.Frame. What I see is that there is a white rectangle after the last tool of tb4 (where previously there was a drop down button). I’ve tried to solve this problem in my application putting mytoolbar.Refresh() and mytoolbar.RefreshOverflowState() in an OnSize event handler but without success
hints appreciated
Marco