Gooey icon indicating copy to clipboard operation
Gooey copied to clipboard

Blurry text on Windows 10 when scaling up display

Open JCapul opened this issue 2 years ago • 0 comments

Hi,

I am experiencing with Gooey the same issue as this Stackoverflow post about wxPython. On Windows 10, I get blurry text when I am scaling up the display in Display Settings.

  • Python Version: 3.9
  • Gooey Version: 1.0.8.1

The answer of the SO post suggests to add the following snippet in one's application:

import ctypes
try:
    ctypes.windll.shcore.SetProcessDpiAwareness(True)
except:
    pass

I have tried it in my toy app to test Gooey and it works.

Would be nice to have it embedded directly in Gooey code base if that's possible.

Thanks for this awesome project!

EDIT: fix mistake, I am on Python 3.9 not 3.10

JCapul avatar Mar 29 '22 08:03 JCapul