roGridScreen description issue on 3.1

Hello,

my code:

theme.GridScreenDescriptionImageSD  = "pkg:/images/Grid_Description_Background_SD43_1.png"
theme.GridScreenDescriptionOffsetSD = "(150,70)"
theme.GridScreenDescriptionImageHD  = "pkg:/images/Grid_Description_Background_Landscape_HD.png"
theme.GridScreenDescriptionOffsetHD = "(190,255)"

seems to have no effect on the positioning of the description on firmware 3.1. It keeps showing up on the top-left corner of the screen.
Any ideas?

That can happen if you call Show() on your roGridScreen before setting it up. Be sure you call SetupLists() before Show()

THIS.

Fixed the issue, thanks Chris.