Gui: when closing application remove all manipulators

This commit is contained in:
wmayer
2023-10-05 16:28:18 +02:00
committed by Yorik van Havre
parent cb786fcbcd
commit 754a047070
3 changed files with 12 additions and 0 deletions

View File

@@ -42,6 +42,11 @@ void WorkbenchManipulator::removeManipulator(const WorkbenchManipulator::Ptr& pt
}
}
void WorkbenchManipulator::removeAll()
{
manipulators.clear();
}
std::set<WorkbenchManipulator::Ptr> WorkbenchManipulator::getManipulators()
{
return manipulators;