Fix regression in dialog Placelabel.

--HG--
branch : develop
This commit is contained in:
Roman Telezhynskyi 2019-12-03 15:20:47 +02:00
parent 60fabf0b71
commit eeedebbac3
2 changed files with 13 additions and 16 deletions

View File

@ -504,8 +504,6 @@ void DialogPlaceLabel::FillPlaceLabelTypes()
//--------------------------------------------------------------------------------------------------------------------- //---------------------------------------------------------------------------------------------------------------------
void DialogPlaceLabel::CheckPieces() void DialogPlaceLabel::CheckPieces()
{
if (not m_showMode)
{ {
QColor color; QColor color;
if (ui->comboBoxPiece->count() <= 0 || ui->comboBoxPiece->currentIndex() == -1) if (ui->comboBoxPiece->count() <= 0 || ui->comboBoxPiece->currentIndex() == -1)
@ -521,7 +519,6 @@ void DialogPlaceLabel::CheckPieces()
ChangeColor(ui->labelPiece, color); ChangeColor(ui->labelPiece, color);
CheckState(); CheckState();
} }
}
//--------------------------------------------------------------------------------------------------------------------- //---------------------------------------------------------------------------------------------------------------------
void DialogPlaceLabel::CheckPoint() void DialogPlaceLabel::CheckPoint()

View File

@ -870,14 +870,14 @@ void DialogSeamAllowance::ShowPlaceLabelsContextMenu(const QPoint &pos)
else if (selectedAction == actionOption) else if (selectedAction == actionOption)
{ {
auto *dialog = new DialogPlaceLabel(data, labelId, this); auto *dialog = new DialogPlaceLabel(data, labelId, this);
dialog->SetCenterPoint(labelId); dialog->EnbleShowMode(true);
dialog->SetLabelType(currentLabel.GetLabelType()); dialog->SetLabelType(currentLabel.GetLabelType());
dialog->SetWidth(currentLabel.GetWidthFormula()); dialog->SetWidth(currentLabel.GetWidthFormula());
dialog->SetHeight(currentLabel.GetHeightFormula()); dialog->SetHeight(currentLabel.GetHeightFormula());
dialog->SetAngle(currentLabel.GetAngleFormula()); dialog->SetAngle(currentLabel.GetAngleFormula());
dialog->SetFormulaVisible(currentLabel.GetVisibilityTrigger()); dialog->SetFormulaVisible(currentLabel.GetVisibilityTrigger());
dialog->SetPieceId(toolId); dialog->SetPieceId(toolId);
dialog->EnbleShowMode(true); dialog->SetCenterPoint(currentLabel.GetCenterPoint());
m_dialog = dialog; m_dialog = dialog;
m_dialog->setModal(true); m_dialog->setModal(true);
connect(m_dialog.data(), &DialogTool::DialogClosed, this, &DialogSeamAllowance::PlaceLabelDialogClosed); connect(m_dialog.data(), &DialogTool::DialogClosed, this, &DialogSeamAllowance::PlaceLabelDialogClosed);