0
0
mirror of https://github.com/fralx/LimeReport.git synced 2025-10-09 05:57:14 +03:00

font experiments

This commit is contained in:
Sanych
2024-01-15 15:55:51 +03:00
parent 9ddeae20d7
commit 3d064b4b1a
3 changed files with 5 additions and 2 deletions

View File

@@ -178,6 +178,9 @@ bool PropertyFilterModel::filterAcceptsRow(int sourceRow, const QModelIndex &sou
ObjectInspectorWidget::ObjectInspectorWidget(QWidget *parent)
:QWidget(parent), m_filterModel(0)
{
auto f = qApp->font();
f.setPointSize(f.pointSize()*0.7);
setFont(f);
m_objectInspectorView = new ObjectInspectorTreeView(this);
m_propertyModel = new BaseDesignPropertyModel(this);
m_filterModel = new PropertyFilterModel(this);