Fix regression.

--HG--
branch : develop
This commit is contained in:
Roman Telezhynskyi 2019-02-14 17:20:56 +02:00
parent ab93e4d448
commit c118b36579
3 changed files with 6 additions and 2 deletions

View file

@ -84,7 +84,7 @@ DialogMove::DialogMove(const VContainer *data, quint32 toolId, QWidget *parent)
flagAngle(false),
flagRotationAngle(false),
flagLength(false),
flagName(false)
flagName(true)
{
ui->setupUi(this);

View file

@ -75,7 +75,7 @@ DialogRotation::DialogRotation(const VContainer *data, quint32 toolId, QWidget *
m_suffix(),
m_firstRelease(false),
flagAngle(false),
flagName(false),
flagName(true),
flagError(false)
{
ui->setupUi(this);

View file

@ -462,6 +462,10 @@ void DialogPlaceLabel::InitPlaceLabelTab()
connect(timerWidth, &QTimer::timeout, this, &DialogPlaceLabel::EvalWidth);
connect(timerHeight, &QTimer::timeout, this, &DialogPlaceLabel::EvalHeight);
connect(timerAngle, &QTimer::timeout, this, &DialogPlaceLabel::EvalAngle);
EvalWidth();
EvalHeight();
EvalAngle();
}
//---------------------------------------------------------------------------------------------------------------------