Kodi Community Forum

Full Version: Hide scan dialog when changing windows
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is it possible to hide the scan dialog when changing windows?
In Aeon65 everything fades out when leaving the home menu, but the progress dialog stayed visible. I implemented a dirty hack some weeks ago by setting a boolean when you click on a menu button and then, for example in myvideonav, setting the focus to an invisible button which resets the boolean (and then sets the focus to the activated viewtype)
Bad thing is that I can´t do the same when going back to home menu as I can´t trigger a <onclick> action then. Any ideas to do this?
WindowPrevious(home) and WindowNext(home) animations?
I only tried
Code:
Window.Previous
before (which triggered too late),
Code:
Window.Next(videolibrary) | Window.Next(settings) | Window.Next(home) + all other windows
seems to work. Thx Smile