per default wx' static text items have a transparent background

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66776 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor 2011-01-26 18:46:59 +00:00
parent ca9eebc346
commit ca12c122df

View File

@ -79,7 +79,8 @@ wxWidgetImplType* wxWidgetImpl::CreateStaticText( wxWindowMac* wxpeer,
{
CGRect r = wxOSXGetFrameForControl( wxpeer, pos , size ) ;
wxUILabel* v = [[wxUILabel alloc] initWithFrame:r];
v.backgroundColor = [UIColor clearColor];
UILineBreakMode linebreak = UILineBreakModeWordWrap;
if ( ((wxStaticText*)wxpeer)->IsEllipsized() )
{