BStringItem: Tiny style fix

This commit is contained in:
John Scipione 2013-11-25 23:34:50 -05:00
parent b38580f902
commit e3be58f144

View File

@ -130,7 +130,7 @@ BStringItem::Text() const
void
BStringItem::Update(BView *owner, const BFont *font)
{
if (fText) {
if (fText != NULL) {
SetWidth(font->StringWidth(fText)
+ be_control_look->DefaultLabelSpacing());
}