JavaDevSweden
JavaDevSweden

Reputation: 2284

Spring Tool Suite 4.7.1 editor bugs after update

I recently updated to version 4.7.1 of Spring Tool Suite on my Ubuntu 16 and since then two strange bugs have appeared in my editor. I wonder if it is STS/Eclipse bugs or if my cat has changed some setting to cause this (yes, she likes lying on the warm laptop keyboard, logging in as admin, opening stuff and changing settings. Don't ask me how...)

  1. When placing marker anywhere and then click-dragging anywhere (to mark a word or a few lines) the entire visible page get's marked from the top to where I had marked.

enter image description here

  1. I can no longer ctrl+click a Java class to go into it's class file as I used to. I also can no longer hover a marked error to get suggestions for solutions like I used to. No hover at all is present.

Is anyone else having this problems with Eclipse or STS?

Upvotes: 1

Views: 565

Answers (1)

howlger
howlger

Reputation: 34137

  1. Selection issue: On Linux make sure to use the right GTK version, which is for the current Eclipse 2020-06 (4.16) GTK 3.20 or higher
  2. Hover issue: As you have found out yourself, make sure to run Eclipse with the right Java VM (which can be specified in the eclipse.ini file)

Upvotes: 2

Related Questions