From 355762aa303361819340cc2f8b92ada326a7e03d Mon Sep 17 00:00:00 2001 From: Sefa Eyeoglu Date: Thu, 4 Aug 2022 10:02:54 +0200 Subject: fix: emit abort in LaunchController Signed-off-by: Sefa Eyeoglu --- launcher/Application.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'launcher/Application.cpp') diff --git a/launcher/Application.cpp b/launcher/Application.cpp index 2bd91fd7..c4bb84e4 100644 --- a/launcher/Application.cpp +++ b/launcher/Application.cpp @@ -1258,6 +1258,9 @@ bool Application::launch( } connect(controller.get(), &LaunchController::succeeded, this, &Application::controllerSucceeded); connect(controller.get(), &LaunchController::failed, this, &Application::controllerFailed); + connect(controller.get(), &LaunchController::aborted, this, [this] { + controllerFailed(tr("Aborted")); + }); addRunningInstance(); controller->start(); return true; -- cgit