Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/remmina-wiki.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiovanni Panozzo <giovanni@panozzo.it>2019-07-15 13:05:06 +0300
committerGiovanni Panozzo <giovanni@panozzo.it>2019-07-15 13:05:06 +0300
commit948764feb9ee0003b69d65a055a7ae1187820a53 (patch)
tree0a041271840c9c49a779f701c06e8e421edb0200 /Problems-and-tweaks
parentdc878b9ba8d98aa9b4583b7cbe0b655f0f349837 (diff)
Update Remmina RDP and HiDPI scaling
Diffstat (limited to 'Problems-and-tweaks')
-rw-r--r--Problems-and-tweaks/Remmina-RDP-and-HiDPI-scaling.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/Problems-and-tweaks/Remmina-RDP-and-HiDPI-scaling.md b/Problems-and-tweaks/Remmina-RDP-and-HiDPI-scaling.md
index 65c7c5e..d285116 100644
--- a/Problems-and-tweaks/Remmina-RDP-and-HiDPI-scaling.md
+++ b/Problems-and-tweaks/Remmina-RDP-and-HiDPI-scaling.md
@@ -28,6 +28,6 @@ This makes Remmina impossible to correctly deal with local scaling: Remmina can
## How should it work
-Windows 10, MacOS, KDE/Qt have a simple approach to HiDPI: an application can declare itself to be HiDPI aware. When the application declares itself HiDPI aware, all drawings to the monitor are not scaled, al pointer motions are not scaled, all mouse cursor are not scaled. Under Qt this can obtained with a single line of code: `QGuiApplication::setAttribute(Qt::AA_DisableHighDpiScaling);`
+Windows 10, MacOS, KDE/Qt have a simple approach to HiDPI: an application can declare itself to be HiDPI aware. When the application declares itself HiDPI aware, all graphical drawings to the monitor are not scaled, al pointer motions are not scaled, all mouse cursor are not scaled. But all wigets of the application, like buttons, texts are still correctly rendered at bigger dimensions. Under Qt this can obtained with a single line of code: `QGuiApplication::setAttribute(Qt::AA_DisableHighDpiScaling);`
Unfortunately, Remmina is not a Qt application, it's a GTK application. And Gnome Shell is not KDE.