what class implements the sync settings widget? Follow
Answered
What class implements the sync IDE settings widget on the statusbar?
I am trying to theme its icon, but have no idea where it's located or what it's called.
I thoroughly searched the jar file containing all the other (AllIcons) icons -> no result.
Perhaps its hidden? :(
Please sign in to leave a comment.
You can always use the UI Inspector to get more information:
https://jetbrains.org/intellij/sdk/docs/reference_guide/internal_actions/internal_ui_inspector.html
There I've found the word "CloudConfig" and looked inside the idea-community repository for it. The responsible classes are these ones:
https://github.com/JetBrains/intellij-community/tree/3ed6559bc8042020d340bf6b5e17a96ef9081339/platform/platform-impl/src/com/intellij/ide/cloudConfig
The icon though is still missing. However it might help you.
See icons.CloudConfigIcons in Cloud Config plugin. Please note this is not open source and shouldn't be used by 3rd party plugins.
Yann Cebron thanks for the info, the icons (and icon paths) were indeed inside the plugin.