This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository enlightenment.
View the commit online.
commit 2488cb88895fbe69077c1ce680d635bac6f967c9
Author: Carsten Haitzler <[email protected]>
AuthorDate: Thu Aug 6 14:56:04 2026 +0100
qt - let's only set env vars if not set and not all
only set QT_QPA_PLATFORMTHEME if not set. don't set QT_STYLE_OVERRIDE
@fix
---
src/bin/e_main.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/src/bin/e_main.c b/src/bin/e_main.c
index 32e597d28..aadbaa5f1 100644
--- a/src/bin/e_main.c
+++ b/src/bin/e_main.c
@@ -621,8 +621,10 @@ main(int argc, char **argv)
/* who wish to use Qt apps without any gnome or gtk usage may choose to */
/* 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");
+ if (!getenv("QT_QPA_PLATFORMTHEME"))
+ e_util_env_set("QT_QPA_PLATFORMTHEME", "gtk2");
+ // problem with qt6?
+ //e_util_env_set("QT_STYLE_OVERRIDE", "gtk2");
}
// make fonts NOT BLURRY. after 35 (v 38, v40 of interpreter) fonts become
// horizontally blurry - they seemingly want the interpreter for hinting to
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.