2020-06-03 17:40:51 +03:00
|
|
|
diff -urN libreoffice-6.4.4.2/vcl/source/app/salplug.cxx libreoffice-6.4.4.2-patched/vcl/source/app/salplug.cxx
|
|
|
|
--- libreoffice-6.4.4.2/vcl/source/app/salplug.cxx 2020-05-13 14:19:20.000000000 +0300
|
|
|
|
+++ libreoffice-6.4.4.2-patched/vcl/source/app/salplug.cxx 2020-06-03 11:24:42.069512831 +0300
|
|
|
|
@@ -149,12 +149,15 @@
|
2020-04-04 20:48:21 +03:00
|
|
|
{
|
|
|
|
static const char* const pKDEFallbackList[] =
|
|
|
|
{
|
2020-06-03 17:40:51 +03:00
|
|
|
-#if ENABLE_KF5
|
|
|
|
- "kf5",
|
2020-04-04 20:48:21 +03:00
|
|
|
-#endif
|
|
|
|
#if ENABLE_GTK3_KDE5
|
|
|
|
+// prefer gtk3_kde5 over kde5 because of maturity of gtk3 rendering;
|
|
|
|
+// based on kde4 vcl experience, I don't trust kde5 VCL,
|
|
|
|
+// and other people wrote about problems in it //mikhailnov
|
|
|
|
"gtk3_kde5",
|
|
|
|
#endif
|
2020-06-03 17:40:51 +03:00
|
|
|
+#if ENABLE_KF5
|
|
|
|
+ "kf5",
|
2020-04-04 20:48:21 +03:00
|
|
|
+#endif
|
2020-06-03 17:40:51 +03:00
|
|
|
"gtk3", "gen", nullptr
|
2020-04-04 20:48:21 +03:00
|
|
|
};
|
|
|
|
|