Make Internal path first in list.

--HG--
branch : feature
This commit is contained in:
Roman Telezhynskyi 2017-01-13 19:09:22 +02:00
parent af51e5e240
commit e974f75b51

View File

@ -409,8 +409,8 @@ void DialogPiecePath::ChangedSAAfter(double d)
//---------------------------------------------------------------------------------------------------------------------
void DialogPiecePath::InitPathTypes()
{
ui->comboBoxType->addItem(tr("Custom seam allowance"), static_cast<int>(PiecePathType::CustomSeamAllowance));
ui->comboBoxType->addItem(tr("Internal path"), static_cast<int>(PiecePathType::InternalPath));
ui->comboBoxType->addItem(tr("Custom seam allowance"), static_cast<int>(PiecePathType::CustomSeamAllowance));
ui->comboBoxPenType->setEnabled(GetType() == PiecePathType::InternalPath);
}