Detect if theme changed real time

已回答

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

0
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

请先登录再写评论。