0
0
mirror of https://github.com/fralx/LimeReport.git synced 2025-10-01 19:51:30 +03:00

Font editors has been fixed

This commit is contained in:
Arin Alexander
2018-07-11 13:29:12 +03:00
parent 449c9a47bd
commit 90ec21d2ab
7 changed files with 10 additions and 10 deletions

View File

@@ -164,8 +164,10 @@ QFont BaseDesignIntf::font() const
void BaseDesignIntf::setFont(QFont &font)
{
m_font = font;
update();
if (m_font != font){
m_font = font;
if (!isLoading()) update();
}
}
qreal BaseDesignIntf::width() const