[Part::Mirror] fix bug where selection gate was not getting removed on cancel button clicked

This commit is contained in:
mwganson
2023-12-04 12:40:10 -06:00
parent 2214819b86
commit 4dddfa79fb
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; }