improve cursor and color implementation in wxqt
This commit is contained in:
committed by
Vadim Zeitlin
parent
9f39eeb5e9
commit
88e134ef81
@@ -344,9 +344,9 @@ bool wxListCtrl::SetItem(wxListItem& info)
|
||||
if ( info.GetFont().IsOk() )
|
||||
qitem->setFont(col, info.GetFont().GetHandle() );
|
||||
if ( info.GetTextColour().IsOk() )
|
||||
qitem->setTextColor(col, info.GetTextColour().GetHandle());
|
||||
qitem->setTextColor(col, info.GetTextColour().GetQColor());
|
||||
if ( info.GetBackgroundColour().IsOk() )
|
||||
qitem->setBackgroundColor(col, info.GetBackgroundColour().GetHandle());
|
||||
qitem->setBackgroundColor(col, info.GetBackgroundColour().GetQColor());
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user