From ba547496f9738b14f5efe3442a17835c66e6d4c4 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 28 Sep 2020 01:57:41 +0200 Subject: [PATCH] Minor edit to the high DPI overview Provide some link between the end of the introduction and the main part of the text. --- docs/doxygen/overviews/high_dpi.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/doxygen/overviews/high_dpi.md b/docs/doxygen/overviews/high_dpi.md index a31f1ed8c0..db25a9c4c7 100644 --- a/docs/doxygen/overviews/high_dpi.md +++ b/docs/doxygen/overviews/high_dpi.md @@ -44,11 +44,14 @@ would become 1000 when automatic scaling is in effect. Automatic scaling is convenient, but doesn't really allow the application to use the extra pixels available on the display. Visually, this means that the scaled application appears blurry, in contrast to sharper applications using -the full display resolution, so a better solution is needed. +the full display resolution, so a better solution for interpreting pixel values +on high DPI displays is needed: one which allows to scale some pixel values +(e.g. the total window size), but not some other ones (e.g. those used for +drawing, which should remain unscaled to use the full available resolution). -Pixel Values in High DPI -======================== +Pixel Values in wxWidgets +========================= Logical and Device-Independent Pixels -------------------------------------