05-18-2020, 12:38 PM
That viewport size is not being handled in the css for the Pi Touch. It results from having the Square Pixels option on which is what most users would do.
The viewport size for Pi Touch was always reported as 479 x 799 up until recently when I observed my own Touch reporting 553 x 998 or 598 x 998 depending on whether square pixels was on. Prolly some change in Pi firmware or something like that.
You can try to edit
/var/www/css/moode.min.css
and change
@media (height:479px) and (width:799px)
to
@media (min-height:443px) and (width:799px)
I'll add the fix for upcoming 6.6.0 release.
The viewport size for Pi Touch was always reported as 479 x 799 up until recently when I observed my own Touch reporting 553 x 998 or 598 x 998 depending on whether square pixels was on. Prolly some change in Pi firmware or something like that.
You can try to edit
/var/www/css/moode.min.css
and change
@media (height:479px) and (width:799px)
to
@media (min-height:443px) and (width:799px)
I'll add the fix for upcoming 6.6.0 release.