Fix regression.
--HG-- branch : develop
This commit is contained in:
parent
ab93e4d448
commit
c118b36579
|
@ -84,7 +84,7 @@ DialogMove::DialogMove(const VContainer *data, quint32 toolId, QWidget *parent)
|
||||||
flagAngle(false),
|
flagAngle(false),
|
||||||
flagRotationAngle(false),
|
flagRotationAngle(false),
|
||||||
flagLength(false),
|
flagLength(false),
|
||||||
flagName(false)
|
flagName(true)
|
||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
|
|
||||||
|
|
|
@ -75,7 +75,7 @@ DialogRotation::DialogRotation(const VContainer *data, quint32 toolId, QWidget *
|
||||||
m_suffix(),
|
m_suffix(),
|
||||||
m_firstRelease(false),
|
m_firstRelease(false),
|
||||||
flagAngle(false),
|
flagAngle(false),
|
||||||
flagName(false),
|
flagName(true),
|
||||||
flagError(false)
|
flagError(false)
|
||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
|
|
|
@ -462,6 +462,10 @@ void DialogPlaceLabel::InitPlaceLabelTab()
|
||||||
connect(timerWidth, &QTimer::timeout, this, &DialogPlaceLabel::EvalWidth);
|
connect(timerWidth, &QTimer::timeout, this, &DialogPlaceLabel::EvalWidth);
|
||||||
connect(timerHeight, &QTimer::timeout, this, &DialogPlaceLabel::EvalHeight);
|
connect(timerHeight, &QTimer::timeout, this, &DialogPlaceLabel::EvalHeight);
|
||||||
connect(timerAngle, &QTimer::timeout, this, &DialogPlaceLabel::EvalAngle);
|
connect(timerAngle, &QTimer::timeout, this, &DialogPlaceLabel::EvalAngle);
|
||||||
|
|
||||||
|
EvalWidth();
|
||||||
|
EvalHeight();
|
||||||
|
EvalAngle();
|
||||||
}
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue
Block a user