workaround for QTBUG-54623
This commit is contained in:
parent
8e545e5c5d
commit
4f782568cf
3 changed files with 12 additions and 3 deletions
|
@ -80,6 +80,9 @@ QVariant SaleModel::data(const QModelIndex& index, int role) const
|
|||
if (role == Qt::FontRole) {
|
||||
QFont myFont;
|
||||
QFont myFixedFont = QFontDatabase::systemFont(QFontDatabase::FixedFont);
|
||||
if (myFixedFont.fixedPitch() == false) {
|
||||
myFixedFont.setFamily("monospace");
|
||||
}
|
||||
|
||||
switch (index.column()) {
|
||||
case 0:
|
||||
|
@ -199,4 +202,4 @@ bool SaleModel::removeRows(int row, int count, const QModelIndex& parent)
|
|||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue