Kodi Community Forum

Full Version: Container visibility bug?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
If container has static content but all of the static items are hidden, then container is not shown and it's not focusable. So far so good.

I have a container "311" with static content for recently added/custom items in a group with id="700".

I would like to show XBMC logo if this container is not visible (no library content or no custom shortcuts assigned) to avoid empty space being presented.

If I use image with check <visible>!Control.IsVisible(311)</visible> logo does not show?
The visibility of the container is not determined by whether or not it has content.
You should use
Code:
!IntegerGreaterThan(Container(311).NumItems,0)
Thanks, I will give it a go.