How to stop annoying documentation pop-ups in IntelliJ IDEA

Using IntelliJ IDEA 15, I get these persistent and annoying documentation popups when my mouse is somewhere in the code window for the decompiled class (from a third-party banner). These will be popup docs for any variable / method / class / something like my mouse. If my mouse is not near any lines of code, it will pop up for the current class file, so basically I can’t see the code unless I move the mouse to another window.

This only happens with decompiled classes, not with my regular code. How to stop it?

+6
source share
1 answer

Go to the menu "File"> "Settings"> "Editor"> "General" - in the "Other" section, uncheck the box "Show online documentation on moving the mouse."

+6
source

All Articles