mirror of
https://github.com/fralx/LimeReport.git
synced 2025-04-02 15:33:46 +03:00
font experiments
This commit is contained in:
parent
9ddeae20d7
commit
3d064b4b1a
2
3rdparty/CMakeLists.txt
vendored
2
3rdparty/CMakeLists.txt
vendored
@ -69,7 +69,7 @@ if (ENABLE_ZINT)
|
|||||||
Qt${QT_VERSION_MAJOR}::Widgets
|
Qt${QT_VERSION_MAJOR}::Widgets
|
||||||
)
|
)
|
||||||
|
|
||||||
target_compile_definitions(QZint PUBLIC -DQZINT_STATIC_BUILD)
|
target_compile_definitions(QZint PUBLIC -DQZINT_LIBRARY)
|
||||||
|
|
||||||
if(PNG_FOUND)
|
if(PNG_FOUND)
|
||||||
target_link_libraries(QZint PRIVATE PNG::PNG)
|
target_link_libraries(QZint PRIVATE PNG::PNG)
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
<enum>QTabWidget::South</enum>
|
<enum>QTabWidget::South</enum>
|
||||||
</property>
|
</property>
|
||||||
<property name="currentIndex">
|
<property name="currentIndex">
|
||||||
<number>0</number>
|
<number>1</number>
|
||||||
</property>
|
</property>
|
||||||
<widget class="QWidget" name="tab_2">
|
<widget class="QWidget" name="tab_2">
|
||||||
<attribute name="title">
|
<attribute name="title">
|
||||||
|
@ -178,6 +178,9 @@ bool PropertyFilterModel::filterAcceptsRow(int sourceRow, const QModelIndex &sou
|
|||||||
ObjectInspectorWidget::ObjectInspectorWidget(QWidget *parent)
|
ObjectInspectorWidget::ObjectInspectorWidget(QWidget *parent)
|
||||||
:QWidget(parent), m_filterModel(0)
|
:QWidget(parent), m_filterModel(0)
|
||||||
{
|
{
|
||||||
|
auto f = qApp->font();
|
||||||
|
f.setPointSize(f.pointSize()*0.7);
|
||||||
|
setFont(f);
|
||||||
m_objectInspectorView = new ObjectInspectorTreeView(this);
|
m_objectInspectorView = new ObjectInspectorTreeView(this);
|
||||||
m_propertyModel = new BaseDesignPropertyModel(this);
|
m_propertyModel = new BaseDesignPropertyModel(this);
|
||||||
m_filterModel = new PropertyFilterModel(this);
|
m_filterModel = new PropertyFilterModel(this);
|
||||||
|
Loading…
Reference in New Issue
Block a user