[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 committed by GitHub
parent d4a73b6d4a
commit 34ef3c1f8b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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();
}