From: dongsug.song Date: Mon, 6 Jan 2025 11:58:18 +0000 (+0900) Subject: [NUI] Fix the issue where the AppControlReceived event handler is not being called X-Git-Tag: submit/tizen_9.0/20250106.121048~1^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bebc82f6135ec6c9c86406a58240b8288b4fdc9e;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [NUI] Fix the issue where the AppControlReceived event handler is not being called --- diff --git a/src/Tizen.NUI/src/public/Application/NUIApplication.cs b/src/Tizen.NUI/src/public/Application/NUIApplication.cs index b63fab535..67525ace3 100755 --- a/src/Tizen.NUI/src/public/Application/NUIApplication.cs +++ b/src/Tizen.NUI/src/public/Application/NUIApplication.cs @@ -523,6 +523,7 @@ namespace Tizen.NUI Backend.AddEventHandler(EventType.PreCreated, OnPreCreate); Backend.AddEventHandler(EventType.Resumed, OnResume); Backend.AddEventHandler(EventType.Paused, OnPause); + Backend.AddEventHandler(EventType.AppControlReceived, OnAppControlReceived); base.Run(args); }