We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26e38a5 commit 3ca028dCopy full SHA for 3ca028d
assemblies/static/src/main/resources/hop-gui.sh
@@ -71,6 +71,12 @@ HOP_OPTIONS="${HOP_OPTIONS} --add-opens java.xml/jdk.xml.internal=ALL-UNNAMED --
71
72
case $(uname -s) in
73
Linux)
74
+ # Workaround for https://github.com/apache/hop/issues/4252
75
+ # Related to https://github.com/eclipse-platform/eclipse.platform.swt/issues/639
76
+ # And to some extent also https://github.com/eclipse-platform/eclipse.platform.swt/issues/790
77
+ if [[ $XDG_SESSION_TYPE == "wayland" ]]; then
78
+ export GDK_BACKEND=x11
79
+ fi
80
if "${_HOP_JAVA}" -XshowSettings:properties -version 2>&1 | grep -q "os.arch = aarch64"; then
81
CLASSPATH="lib/core/*:lib/beam/*:lib/swt/linux/arm64/*"
82
else
0 commit comments