From e974f75b51788727b040a2a8f37404e20cfd1900 Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Fri, 13 Jan 2017 19:09:22 +0200 Subject: [PATCH] Make Internal path first in list. --HG-- branch : feature --- src/libs/vtools/dialogs/tools/dialogpiecepath.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/vtools/dialogs/tools/dialogpiecepath.cpp b/src/libs/vtools/dialogs/tools/dialogpiecepath.cpp index c3247f8f1..d9d017a80 100644 --- a/src/libs/vtools/dialogs/tools/dialogpiecepath.cpp +++ b/src/libs/vtools/dialogs/tools/dialogpiecepath.cpp @@ -409,8 +409,8 @@ void DialogPiecePath::ChangedSAAfter(double d) //--------------------------------------------------------------------------------------------------------------------- void DialogPiecePath::InitPathTypes() { - ui->comboBoxType->addItem(tr("Custom seam allowance"), static_cast(PiecePathType::CustomSeamAllowance)); ui->comboBoxType->addItem(tr("Internal path"), static_cast(PiecePathType::InternalPath)); + ui->comboBoxType->addItem(tr("Custom seam allowance"), static_cast(PiecePathType::CustomSeamAllowance)); ui->comboBoxPenType->setEnabled(GetType() == PiecePathType::InternalPath); }