Merge pull request #11633 from mwganson/partmirroring

[Part::Mirror] fix bug where selection gate was not getting removed o…
This commit is contained in:
sliptonic
2023-12-11 11:05:56 -06:00
committed by GitHub
2 changed files with 6 additions and 0 deletions

View File

@@ -370,4 +370,9 @@ bool TaskMirroring::accept()
return widget->accept();
}
bool TaskMirroring::reject()
{
return widget->reject();
}
#include "moc_Mirroring.cpp"

View File

@@ -67,6 +67,7 @@ public:
public:
bool accept() override;
bool reject() override;
QDialogButtonBox::StandardButtons getStandardButtons() const override
{ return QDialogButtonBox::Ok | QDialogButtonBox::Cancel; }