[DeckShare] Forward a dependency's cancellation as the owner's own

This commit is contained in:
Lukas Brübach 2026-09-19 07:10:29 +02:00
parent d93671e62a
commit f2c94f3833

View file

@ -28,6 +28,7 @@ void Intent::runDependency(Intent *dependency)
this->execute();
});
connect(dependency, &Intent::failed, this, &Intent::failed);
connect(dependency, &Intent::cancelled, this, &Intent::cancelled);
dependency->execute();
}