From 6bff89542a2c1b5719370baf3c3a38fd8b2b3c37 Mon Sep 17 00:00:00 2001 From: adisbladis Date: Mon, 16 Oct 2017 02:25:50 +0800 Subject: [PATCH] Disable HiDPI by default on X11 as it causes segmentation faults with certain themes (KDE Breeze) --- src/common/Configuration.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/Configuration.h b/src/common/Configuration.h index 19c6fb1..2bb1dc5 100644 --- a/src/common/Configuration.h +++ b/src/common/Configuration.h @@ -69,7 +69,7 @@ namespace SDDM { Entry(DisplayCommand, QString, _S(DATA_INSTALL_DIR "/scripts/Xsetup"), _S("Path to a script to execute when starting the display server")); Entry(DisplayStopCommand, QString, _S(DATA_INSTALL_DIR "/scripts/Xstop"), _S("Path to a script to execute when stopping the display server")); Entry(MinimumVT, int, MINIMUM_VT, _S("The lowest virtual terminal number that will be used.")); - Entry(EnableHiDPI, bool, false, _S("Enable Qt's automatic high-DPI scaling")); + Entry(EnableHiDPI, bool, true, _S("Enable Qt's automatic high-DPI scaling")); ); Section(Wayland, -- 2.14.2