fix small logic error
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55438 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1784,7 +1784,9 @@ bool wxAuiToolBar::Realize()
|
||||
vert_sizer->AddStretchSpacer(1);
|
||||
ctrl_sizer_item = vert_sizer->Add(item.window, 0, wxEXPAND);
|
||||
vert_sizer->AddStretchSpacer(1);
|
||||
if ( (m_style & wxAUI_TB_TEXT) && !item.GetLabel().empty() )
|
||||
if ( (m_style & wxAUI_TB_TEXT) &&
|
||||
m_tool_text_orientation == wxAUI_TBTOOL_TEXT_BOTTOM &&
|
||||
!item.GetLabel().empty() )
|
||||
{
|
||||
wxSize s = GetLabelSize(item.GetLabel());
|
||||
vert_sizer->Add(1, s.y);
|
||||
|
Reference in New Issue
Block a user