Does PhpStorm cursor disappear after using Find / Replace in Windows 10?

I use PhpStorm (v 10.0.3) on Windows 10. At any time when I use Find / Replace, the cursor (text marker) disappears from the screen and the code becomes invalid. Usually I have to restart the editor to fix this.

Is this a known issue and can I get a fix?

+5
source share
1 answer

You are unlikely to find much support for such an old version.

I found the following advice

add this to your /bin/idea.properties

actionSystem.suspendFocusTransferIfApplicationInactive=false 

Also make sure the latest version of JRE is installed.

Another, then my only suggestion is to upgrade to version 2017, which has various bug fixes (including this bug) and some great new features for OOP PHP.

0
source

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


All Articles