-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Closed
Labels
EnhancementA new feature or improvement to an existing feature.A new feature or improvement to an existing feature.Priority - HighIssue needs to be addressed as soon as possibleIssue needs to be addressed as soon as possibleUI/UXRelates to the user interface design and overall feel of the application.Relates to the user interface design and overall feel of the application.
Milestone
Description
Computers using HiDPI windows scalling with non hidpi apps will blur the interface (it will scale the interface like a bitmap, not like a vector).
To add HiDPI Support, just add this to manifest file.
VS2015 already have it, just need to uncomment the section.
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" > <asmv3:application> <asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings"> <dpiAware>true</dpiAware> </asmv3:windowsSettings> </asmv3:application> </assembly>
cuiliang, brandoncasaba, kysel, Norbitor, thuandt and 10 more
Metadata
Metadata
Assignees
Labels
EnhancementA new feature or improvement to an existing feature.A new feature or improvement to an existing feature.Priority - HighIssue needs to be addressed as soon as possibleIssue needs to be addressed as soon as possibleUI/UXRelates to the user interface design and overall feel of the application.Relates to the user interface design and overall feel of the application.