vaxace
Binge Watcher
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2011
10:16 AM
Grid not displaying correctly
I've fianlly started working with the roGridScreen and am experiencing a strange problem that I haven't been able to fix as yet.
The description box is being displayed in the upper left corner of the screen and a portion of the lower right screen is being clipped.
If I turn off display of the description box the clipped portion is displayed. If I turn the display back on the clipping occurs again
(I added some logic to my app to toggle display of the description on a remote button push).
Here's a screen shot:

Roku info:
Model: 2100X
Version: 2.9 build 1553
Suggestions will be appreciated.
Thanks,
Dave
The description box is being displayed in the upper left corner of the screen and a portion of the lower right screen is being clipped.
If I turn off display of the description box the clipped portion is displayed. If I turn the display back on the clipping occurs again
(I added some logic to my app to toggle display of the description on a remote button push).
Here's a screen shot:

Roku info:
Model: 2100X
Version: 2.9 build 1553
Suggestions will be appreciated.
Thanks,
Dave
3 REPLIES 3


Roku Employee
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2011
10:34 AM
Re: Grid not displaying correctly
That can happen when you call the grid's Show() function before calling SetupLists() and SetListNames(). Be sure to set the screen up before displaying it and you should avoid that issue.

TheEndless
Channel Surfer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2011
10:38 AM
Re: Grid not displaying correctly
The clipping/overlay is a known issue. I reported it awhile back here: viewtopic.php?f=34&t=39012&p=257708#p257664
The description showing up in the upper left sounds like you've got the GridScreenDescriptionOffsetSD/HD set incorrectly. It should be a quoted string in the format "(x, y)".
EDIT: Or, I guess it can happen if the screen is configured out of order as RokuChris mentioned.
The description showing up in the upper left sounds like you've got the GridScreenDescriptionOffsetSD/HD set incorrectly. It should be a quoted string in the format "(x, y)".
EDIT: Or, I guess it can happen if the screen is configured out of order as RokuChris mentioned.
My Channels: http://roku.permanence.com - Twitter: @TheEndlessDev
Instant Watch Browser (NetflixIWB), Aquarium Screensaver (AQUARIUM), Clever Clocks Screensaver (CLEVERCLOCKS), iTunes Podcasts (ITPC), My Channels (MYCHANNELS)
Instant Watch Browser (NetflixIWB), Aquarium Screensaver (AQUARIUM), Clever Clocks Screensaver (CLEVERCLOCKS), iTunes Podcasts (ITPC), My Channels (MYCHANNELS)
vaxace
Binge Watcher
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2011
10:52 AM
Re: Grid not displaying correctly
RokuChris, Thanks. That was it.
When I abstracted my init code onto a function a Show() got left behind. :oops:
D.
When I abstracted my init code onto a function a Show() got left behind. :oops:
D.