My screen is a 1366x768 screen. The screen size code did not work to I just did this:
SCREEN_WIDTH = int(os.getenv('SCREEN_WIDTH', 1366))
SCREEN_HEIGHT = int(os.getenv('SCREEN_HEIGHT', 768))
and it fit but it does not respond at all. No buttons can be clicked.
My screen is a 1366x768 screen. The screen size code did not work to I just did this:
SCREEN_WIDTH = int(os.getenv('SCREEN_WIDTH', 1366))SCREEN_HEIGHT = int(os.getenv('SCREEN_HEIGHT', 768))and it fit but it does not respond at all. No buttons can be clicked.