What does this "Screen reader support option" prompt means?

已回答

Hello everyone,

I recently saw a prompt when I open JetBrains IDEs for the first time after installing it. Same thing happened when I opened WebStorm and PyCharm also. What does it means? I didn't install any third party screen reader application. And I didn't see this prompt ever before, recently after resetting my PC when I installed these IDEs for the first time I am seeing this. And there is a default screen reader in windows which is Narrator, but this feature is turned off.You can see the prompt.

  

And this is the screen reader feature, which is turned off. Can anyone please explain what is this? and how to solve this thing? Is it good or a bad thing? since I have never seen this before.

My OS: Windows 10 Home

0

If you don't want to see this dialog, you can add

ide.support.screenreaders.enabled=false

in Help | Edit Custom Properties and restart the IDE.

You get this dialog because the following method returns true on your system:

/*
* get Windows SPI_GETSCREENREADER system parameter
* https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-systemparametersinfoa#SPI_GETSCREENREADER
*/
private static boolean isWindowsScreenReaderEnabled() {
//get Windows SPI_GETSCREENREADER system parameter
//https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-systemparametersinfoa#SPI_GETSCREENREADER
BOOLByReference isActive = new BOOLByReference();
boolean retValue = User32Ex.INSTANCE.SystemParametersInfo(new UINT(0x0046), new UINT(0), isActive, new UINT(0));
return retValue && isActive.getValue().booleanValue();
}
0

Serge Baranov thanks for replying.

Is there any way to change the setting in my system?

0

See https://stackoverflow.com/a/8081894/104891 .

There could be some other app running on your system which acts as a screen reader. Unfortunately, we don't know which specific app is causing this issue.

1

Serge Baranov is it okay if this screen reader thing is turned on? I mean will it gonna be a problem if I leave this thing as it is? Is it very necessary to turn it off? Any cons.?

0

No cons, it will not affect anything in the IDE.

1

请先登录再写评论。