From 34ef3c1f8bebe675e310c0731b279e909346c374 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20Br=C3=BCbach?= Date: Sat, 19 Sep 2026 07:10:29 +0200 Subject: [PATCH] [DeckShare] Forward a dependency's cancellation as the owner's own --- cockatrice/src/interface/intents/intent.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/cockatrice/src/interface/intents/intent.cpp b/cockatrice/src/interface/intents/intent.cpp index aa06fd81b..db0d13b2c 100644 --- a/cockatrice/src/interface/intents/intent.cpp +++ b/cockatrice/src/interface/intents/intent.cpp @@ -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(); }