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:11:40 +0300
committerGiovanni Panozzo <giovanni@panozzo.it>2019-07-15 13:11:40 +0300
commit972b887a2549e4084bd14e76118725c9e7672c8b (patch)
tree9d0b155d99b9f13fcee7d56f2f21e394c5073988 /Problems-and-tweaks
parentaa3542f008a5c0d188a7b789718e5fcb0317ad6c (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 b759df7..96fc993 100644
--- a/Problems-and-tweaks/Remmina-RDP-and-HiDPI-scaling.md
+++ b/Problems-and-tweaks/Remmina-RDP-and-HiDPI-scaling.md
@@ -27,6 +27,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 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);`
+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, all 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.