How to enable "for current project" indicator, when registering a "projectConfigurable"?

Answered

I registered a ```com.intellij.openapi.options.Configurable``` instance via

```

<extensions defaultExtensionNs="com.intellij">
<projectConfigurable instance="com.foo.options.Configuration"/>
</extensions>

```

but the "for current project" indicator is not shown.

I like to see this for my own plugin:



0
4 comments
Avatar
Permanently deleted user
Official comment

Thank you for your report. It looks like a bug, because all project configurables should have this icon, if they are registered via projectConfigurable.

I figured out a workaround. I only tried 2016.3.3. You have to set the displayName attribute.

<extensions defaultExtensionNs="com.intellij">
<projectConfigurable displayName="An explicit display name" instance="com.foo.options.Configuration"/>
</extensions>

 

Is it a bug or did I miss some documentation?.

0
Avatar
Permanently deleted user

I collected here some useful information from javadoc.

0

Please sign in to leave a comment.