diff --git a/src/Insight/InsightWorker/Tasks/CaptureMemorySnapshot.hpp b/src/Insight/InsightWorker/Tasks/CaptureMemorySnapshot.hpp index 43af500b..99cc4c2a 100644 --- a/src/Insight/InsightWorker/Tasks/CaptureMemorySnapshot.hpp +++ b/src/Insight/InsightWorker/Tasks/CaptureMemorySnapshot.hpp @@ -24,6 +24,12 @@ namespace Bloom const std::optional& data ); + TaskGroups getTaskGroups() const override { + return TaskGroups({ + TaskGroup::USES_TARGET_CONTROLLER, + }); + }; + signals: void memorySnapshotCaptured(MemorySnapshot snapshot);