Formatting for basket and sales improved

This commit is contained in:
Martin Brodbeck 2018-10-19 08:58:17 +02:00
parent cac9ee9e30
commit 3a635825ef
2 changed files with 8 additions and 3 deletions

View file

@ -33,7 +33,10 @@ QVariant BasketModel::data(const QModelIndex& index, int role) const
return myFixedFont;
case 3:
myFixedFont.setPointSize(myFixedFont.pointSize() + 3);
myFixedFont.setBold(true);
return myFixedFont;
default:
return myFont;
}
}