-
Notifications
You must be signed in to change notification settings - Fork 533
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adjusting Scale for Higher DPI Screens #505
Comments
From bCNC you can change the fonts in the Tab: Tools -> Fonts, but not the DPI. |
Doubling icon size on load may also help. def loadIcons():
global icons
icons = {}
for img in glob.glob("%s%sicons%s*.gif"%(prgpath,os.sep,os.sep)):
name,ext = os.path.splitext(os.path.basename(img))
try:
icons[name] = PhotoImage(file=img)
icons[name] = icons[name].zoom(2, 2) #<-- Double size Icon
except TclError:
pass |
Thanks! Will try these suggestions! |
@effer it should be added as a user preference the zooming of icons |
Ok will do. |
Is it possible to change the DPI settings for high resolution screen?
The text was updated successfully, but these errors were encountered: