Menu bar - clutter in eclipse neon.3 on Ubuntu 16.10

I just installed eclipse neon.3 on Ubuntu 16.10, but the menu bar is a mess in Java Vista:

enter image description here

As you can see from above, the menu buttons seem to have been randomly selected there, and I cannot reorder / drag / move them.

Buttons with saving are also saved, since the file is dirty - read to save, but nothing has changed.

Is Eclipse neon.3 broken on Linux / Ubuntu 16.10?

Resetting perspectives has no effect.

Restarting eclipse, and now I have even fewer buttons on the menu bar:

enter image description here

Works fine on windows 7.

As suggested below, I tried adding the following to eclipse.ini:

enter image description here

But then I can no longer run eclipse and instead get this error:

enter image description here

, Eclipse Linux/Ubuntu.

+4
4

. :

export SWT_GTK3=0
eclipse/eclipse

, Ubuntu 16.10, Eclipse neon.2 JDK 8.

:

+3

GTK 3 - eclipse.ini:

--launcher.GTK_version
2
+1

neon.3 Ubuntu 17.04. , eclipse.desktop ( ~/local/share/applications/), SWT_GTK3 0, :

Exec=sh -c "export SWT_GTK3=0 && {path_to_eclipse_folder}/eclipse"

but I found some errors when opening and / or editing some files. Therefore, while reading about the problem while trying to read the markup file, I came across this message. This post says that to prevent these errors, you must install lib. Therefore, after installing lib (as indicated above), everything works correctly.

 sudo apt-get install libwebkitgtk-1.0-0
0
source

If you want to use the temporary modification of the .ini modification; it should be up to vmargs. Like this -

-startup
plugins/org.eclipse.equinox.launcher_1.4.0.v20161219-1356.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.550.v20170928-1359
-product
org.eclipse.epp.package.dsl.product
-showsplash
org.eclipse.epp.package.common
--launcher.defaultAction
openFile
--launcher.defaultAction
openFile
--launcher.GTK_version
2
--launcher.appendVmargs
-vmargs
-Dosgi.requiredJavaVersion=1.8
-Dosgi.instance.area.default=@user.home/eclipse-workspace
-XX:+UseG1GC
-XX:+UseStringDeduplication
--add-modules=ALL-SYSTEM
-Dosgi.requiredJavaVersion=1.8
-Xms256m
-Xmx2024m
--add-modules=ALL-SYSTEM
0
source

Source: https://habr.com/ru/post/1667288/


All Articles