diff options
author | jan Iversen <jani@libreoffice.org> | 2018-01-06 09:20:54 +0100 |
---|---|---|
committer | jan Iversen <jani@libreoffice.org> | 2018-01-06 10:43:47 +0100 |
commit | 1dd5f10c3c6e0189ada4ecd6d08beb4c5fd1d42d (patch) | |
tree | 15d05462b6f925e51695cf04d4ec49caa01a6846 /vcl | |
parent | 72db74239a0853df72f323e756d304cb3e5dae02 (diff) |
iOS, correct DPIX calculation
Patch is thanks to Jon N.
Change-Id: Idba9ec9b32b144523f0e7da5f7273f6af9fdfd31
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/quartz/salgdicommon.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/quartz/salgdicommon.cxx b/vcl/quartz/salgdicommon.cxx index 192bdc5aa47e..62b40f840bfc 100644 --- a/vcl/quartz/salgdicommon.cxx +++ b/vcl/quartz/salgdicommon.cxx @@ -1542,7 +1542,7 @@ void AquaSalGraphics::GetResolution( sal_Int32& rDPIX, sal_Int32& rDPIY ) rDPIX = mnRealDPIX; rDPIY = mnRealDPIY; #else - rDPIX = rDPIY = 200; // FIXME + rDPIX = rDPIY = 96; #endif } |