Fix or add some DoGetBestSize's
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26837 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -74,7 +74,10 @@ void wxGauge::DoSetGauge()
|
||||
|
||||
wxSize wxGauge::DoGetBestSize() const
|
||||
{
|
||||
return wxSize(100, 28);
|
||||
if (HasFlag(wxGA_HORIZONTAL))
|
||||
return wxSize(100, 28);
|
||||
else
|
||||
return wxSize(28, 100);
|
||||
}
|
||||
|
||||
void wxGauge::SetRange( int range )
|
||||
|
Reference in New Issue
Block a user