From 4a638c8643cdcd2f692dba0d461c784ff50dda73 Mon Sep 17 00:00:00 2001 From: "Simon Lees (SUSE)" Date: Tue, 13 Sep 2016 13:54:11 +0930 Subject: [PATCH] Also set QT_STYLE_OVERRIDE Qt 5.7 has introduced an extra enviornment var for getting Qt/KDE apps to follow gtk theming so we will export that alongside the one that we already support. Thanks to AJSlye for finding reporting and figuring this out. --- src/bin/e_main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/e_main.c b/src/bin/e_main.c index 28ed4bc69..108edf6e6 100644 --- a/src/bin/e_main.c +++ b/src/bin/e_main.c @@ -341,6 +341,7 @@ main(int argc, char **argv) /* install qt5ct and overwrite this variable with qt5ct and use that to */ /* configure there Qt5 applications. */ e_util_env_set("QT_QPA_PLATFORMTHEME", "gtk2"); + e_util_env_set("QT_STYLE_OVERRIDE", "gtk2"); TS("Parse Arguments"); _e_main_parse_arguments(argc, argv);