Detect if theme changed real time

Answered

Hi, how to detect if the theme changed so I can do something if it happen, example update content in toolWindow?

0
2 comments
Avatar
Permanently deleted user

Solve by myself, use this line of code:

val app = ApplicationManager.getApplication().messageBus
app.connect().subscribe(UISettingsListener.TOPIC, UISettingsListener {
loadContentHtml()
})
0

See com.intellij.ide.ui.LafManagerListener

0

Please sign in to leave a comment.