-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Closed
Labels
Milestone
Description
Currently the default DPI Awareness
is true/PM
, this won't suite everyone.
-
AddCefSharpSettings
option to allow for a new command line arg to be appended -
Change default to
PerMonitorV2
??? -
Both browser process and
GPU
process (Chrome
doesn't appear to worry aboutrender
processes) must have a matching awareness. -
app.manifest
setting takes priority overCef.EnableHighDPISupport();
-
Chrome
defaults toPerMonitorV2
, we currently usePerMonitor
UPDATE
Chromium
now sets the DPI Awareness
to PermonitorV2
by default. You can override this via app.manifest
or via programmatic call. #4410
jozefizso and yogster