Fix double call of a main path context menu.
This commit is contained in:
parent
5eaab50647
commit
2945da4d38
|
@ -18,6 +18,7 @@
|
||||||
- Help user to select default GUI language.
|
- Help user to select default GUI language.
|
||||||
- Improve validation grainline position.
|
- Improve validation grainline position.
|
||||||
- Increased the limit for the Letter field.
|
- Increased the limit for the Letter field.
|
||||||
|
- Fix double call of a main path context menu.
|
||||||
|
|
||||||
# Valentina 0.7.49 July 1, 2021
|
# Valentina 0.7.49 July 1, 2021
|
||||||
- Fix crash.
|
- Fix crash.
|
||||||
|
|
|
@ -3010,22 +3010,6 @@ void DialogSeamAllowance::InitPieceTab()
|
||||||
VAbstractApplication::VApp()->Settings()->GetForbidWorkpieceFlipping());
|
VAbstractApplication::VApp()->Settings()->GetForbidWorkpieceFlipping());
|
||||||
uiTabPaths->checkBoxForceFlipping->setChecked(
|
uiTabPaths->checkBoxForceFlipping->setChecked(
|
||||||
VAbstractApplication::VApp()->Settings()->GetForceWorkpieceFlipping());
|
VAbstractApplication::VApp()->Settings()->GetForceWorkpieceFlipping());
|
||||||
uiTabPaths->checkBoxHideMainPath->setChecked(VAbstractApplication::VApp()->Settings()->IsHideMainPath());
|
|
||||||
|
|
||||||
uiTabPaths->listWidgetMainPath->setContextMenuPolicy(Qt::CustomContextMenu);
|
|
||||||
connect(uiTabPaths->listWidgetMainPath, &QListWidget::customContextMenuRequested, this,
|
|
||||||
&DialogSeamAllowance::ShowMainPathContextMenu);
|
|
||||||
connect(uiTabPaths->listWidgetMainPath->model(), &QAbstractItemModel::rowsMoved, this,
|
|
||||||
&DialogSeamAllowance::ListChanged);
|
|
||||||
connect(uiTabPaths->listWidgetMainPath, &QListWidget::itemSelectionChanged, this,
|
|
||||||
&DialogSeamAllowance::SetMoveControls);
|
|
||||||
|
|
||||||
connect(uiTabPaths->toolButtonTop, &QToolButton::clicked, this,
|
|
||||||
[this](){MoveListRowTop(uiTabPaths->listWidgetMainPath);});
|
|
||||||
connect(uiTabPaths->toolButtonUp, &QToolButton::clicked, this,
|
|
||||||
[this](){MoveListRowUp(uiTabPaths->listWidgetMainPath);});
|
|
||||||
connect(uiTabPaths->toolButtonDown, &QToolButton::clicked, this,
|
|
||||||
[this](){MoveListRowDown(uiTabPaths->listWidgetMainPath);});
|
|
||||||
|
|
||||||
connect(uiTabPaths->lineEditUUID, &QLineEdit::textChanged, this, &DialogSeamAllowance::DetailUUIDChanged);
|
connect(uiTabPaths->lineEditUUID, &QLineEdit::textChanged, this, &DialogSeamAllowance::DetailUUIDChanged);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user