Fix missing tool in the overflow menu of wxAuiToolBar

When determining if a tool is hidden, it takes the width (or height) of
the overflow sizer into account -- but when tools are overlapping, this
is 0. By setting and getting the minimum size of the overflow sizer, the
actual size of the overflow button can be used.

Closes #17960.

Closes https://github.com/wxWidgets/wxWidgets/pull/799
This commit is contained in:
Maarten Bent
2018-05-01 21:20:21 +02:00
committed by Vadim Zeitlin
parent 58a7339cb9
commit 2a5aafb274
2 changed files with 4 additions and 2 deletions

View File

@@ -79,6 +79,7 @@ All:
All (GUI):
- Improve stock items consistency and aesthetics (dhowland).
- Fix bug with missing items in overflowing AUI toolbar (Maarten Bent).
wxGTK: