Added wxSizerItem::SetMinSize that calls m_window->SetSizeHints if not
wxFIXED_MINSIZE, SetInitSize and SetItemMinSize uses SetMinSize, and fixed [ 934651 ] sizeritem's 'minsize' value has no effect in xrc resources git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26778 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -735,8 +735,7 @@ bool wxSizer::DoSetItemMinSize( wxWindow *window, int width, int height )
|
||||
|
||||
if (item->GetWindow() == window)
|
||||
{
|
||||
item->SetInitSize( width, height );
|
||||
item->GetWindow()->SetSizeHints(width, height);
|
||||
item->SetMinSize( width, height );
|
||||
return true;
|
||||
}
|
||||
node = node->GetNext();
|
||||
@@ -815,9 +814,7 @@ bool wxSizer::DoSetItemMinSize( size_t index, int width, int height )
|
||||
else
|
||||
{
|
||||
// ... but the minimal size of spacers and windows in stored in them
|
||||
item->SetInitSize( width, height );
|
||||
if (item->GetWindow())
|
||||
item->GetWindow()->SetSizeHints(width, height);
|
||||
item->SetMinSize( width, height );
|
||||
}
|
||||
|
||||
return true;
|
||||
|
Reference in New Issue
Block a user