Skip to content

Commit

Permalink
[NUI] Fix the issue where the AppControlReceived event handler is not…
Browse files Browse the repository at this point in the history
… being called
  • Loading branch information
dongsug-song committed Jan 6, 2025
1 parent 3c531d5 commit bebc82f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Tizen.NUI/src/public/Application/NUIApplication.cs
Original file line number Diff line number Diff line change
Expand Up @@ -523,6 +523,7 @@ public override void Run(string[] args)
Backend.AddEventHandler(EventType.PreCreated, OnPreCreate);
Backend.AddEventHandler(EventType.Resumed, OnResume);
Backend.AddEventHandler(EventType.Paused, OnPause);
Backend.AddEventHandler<AppControlReceivedEventArgs>(EventType.AppControlReceived, OnAppControlReceived);
base.Run(args);
}

Expand Down

0 comments on commit bebc82f

Please sign in to comment.