diff options
author | Pierre de La Morinerie <kemenaran@gmail.com> | 2015-09-11 22:08:15 +0200 |
---|---|---|
committer | Pierre de La Morinerie <kemenaran@gmail.com> | 2015-10-04 23:11:05 +0200 |
commit | 2f4a1e0d599df022a41e86a08cfb479212f75214 (patch) | |
tree | 8acb91e80a1c91d0c4b8572e9d1f24e19183a32d | |
parent | 513483f8d59912fc4be6eb8f4765348bbfc17f9f (diff) |
citra-qt: Enable high-DPI widgets on Mac app
The OS will render the widgets using the system screen DPI (instead of
being locked at @1x resolution).
This has no impact on the existing high-DPI rendering code in Citra,
which means that the resolution of the emulated content is increased
to the real number of pixels, as on other platforms.
-rw-r--r-- | src/citra_qt/Info.plist | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/citra_qt/Info.plist b/src/citra_qt/Info.plist index 0e5f092e5..4c89e128b 100644 --- a/src/citra_qt/Info.plist +++ b/src/citra_qt/Info.plist @@ -32,5 +32,9 @@ <true/> <key>NSHumanReadableCopyright</key> <string></string> + <key>NSPrincipalClass</key> + <string>NSApplication</string> + <key>NSHighResolutionCapable</key> + <string>True</string> </dict> </plist> |