Problem with video widget and FrontendApplication
On a custom screen which contains a VideoWidget, I added a button that calls a callback to go back to another screen. I switch the screen as it's suggested from ST by calling
static_cast<FrontendApplication*>(Application::getInstance())->gotoHomeScreen();This way of doing works on all my screens, but on the video screen it crashes the program when the tick event gets called :
FrontendApplicationBase::handleTickEvent();When I remove the video widget of my view, the problem disappears.
Is there a way to solve the issue ?
