aalcala07 / home_dashboard

Home dashboard built with Pygame
MIT License
0 stars 1 forks source link

Display features improperly scaled and overlap at low resolutions #5

Open snoyes opened 2 years ago

snoyes commented 2 years ago

The clock component uses fixed size fonts. At 800x600, this causes the date to be cut off at the top, and the weather forecast overlaps the sunrise/sunset activity.

dashboard_800x600

aalcala07 commented 2 years ago

There is a way to scale the text globally from the config using FONT_SCALE. Ideally this would solve any problems like this for smaller screens.

Another option might be to implement a way to scale text on the component level, but I'm not sure this is necessary for this specific instance.