From f31c5c4a7ce3eb45f30318fe19dbe3ebedbc6e1f Mon Sep 17 00:00:00 2001 From: Peter Petrik Date: Thu, 12 Oct 2023 10:03:02 +0200 Subject: [PATCH] fix #2853 symbol size --- app/map/inputmapcanvasmap.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/map/inputmapcanvasmap.cpp b/app/map/inputmapcanvasmap.cpp index 9c1a1a4e6..e5a62b8ae 100644 --- a/app/map/inputmapcanvasmap.cpp +++ b/app/map/inputmapcanvasmap.cpp @@ -268,7 +268,7 @@ void InputMapCanvasMap::onScreenChanged( QScreen *screen ) { mMapSettings->setDevicePixelRatio( screen->devicePixelRatio() ); } - mMapSettings->setOutputDpi( screen->logicalDotsPerInch() ); + mMapSettings->setOutputDpi( screen->physicalDotsPerInch() ); } }