You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
It seems, the Windows version is not DPI aware and when using it with scaling on a 4K display, the UI does not look very nice.
Describe the solution you'd like
It would be nice if the application had DPI awareness enabled and if needed using icons and bitmap rendering with upscaling to keep the original size.
Describe alternatives you've considered
I tried to enable advanced system upscaling in the application properties in Windows, but this did not help.
Additional context
See the screenshot here - this demonstrates the issue. The title bar is in rendered at the native resolution while the application content is blurred as it is only upscaled due to the missing DPI awareness:
Another example - the profile edit dialog:
The text was updated successfully, but these errors were encountered:
I started adding an app.manifest file to the application with the respective settings and use the need initialization. So getting DPI awareness is quite simple. However there is still work to do to handle the stored Window size as DPI independent value and to handle toolbar icons and bitmaps as device independent images which upscale if needed. Also the dialog element sizes may need to be adjusted depending on the display scaling:
However text and native Windows Forms controls in dialog windows already look much nicer this way:
Is your feature request related to a problem? Please describe.
It seems, the Windows version is not DPI aware and when using it with scaling on a 4K display, the UI does not look very nice.
Describe the solution you'd like
It would be nice if the application had DPI awareness enabled and if needed using icons and bitmap rendering with upscaling to keep the original size.
Describe alternatives you've considered
I tried to enable advanced system upscaling in the application properties in Windows, but this did not help.
Additional context
See the screenshot here - this demonstrates the issue. The title bar is in rendered at the native resolution while the application content is blurred as it is only upscaled due to the missing DPI awareness:
Another example - the profile edit dialog:
The text was updated successfully, but these errors were encountered: