0
0
mirror of https://github.com/fralx/LimeReport.git synced 2025-04-01 07:03:43 +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

@ -69,7 +69,7 @@ if (ENABLE_ZINT)
Qt${QT_VERSION_MAJOR}::Widgets
)
target_compile_definitions(QZint PUBLIC -DQZINT_STATIC_BUILD)
target_compile_definitions(QZint PUBLIC -DQZINT_LIBRARY)
if(PNG_FOUND)
target_link_libraries(QZint PRIVATE PNG::PNG)

View File

@ -35,7 +35,7 @@
<enum>QTabWidget::South</enum>
</property>
<property name="currentIndex">
<number>0</number>
<number>1</number>
</property>
<widget class="QWidget" name="tab_2">
<attribute name="title">

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);