com.intellij.openapi.fileEditor.impl.FileEditorManagerImpl#dumbModeFinished derails my EditorTabColorProvider
Answered
com.intellij.openapi.fileEditor.impl.FileEditorManagerImpl#dumbModeFinished
async background color update derails my custom EditorTabColorProvider implementation as it requires to be execute in EDT due to usage of FileEditorManager.getInstance(project).getSelectedEditor(virtualFile)
Supressing it on dumbModeFinished
undermines the setup which happens before dumbMode is finished.
Any ideas how to tackle this?
Thanks
Please sign in to leave a comment.
Sorry for delay, please watch https://youtrack.jetbrains.com/issue/IDEA-327770/Custom-FileEditorProvidercreateEditor-is-being-called-on-a-non-EDT-thread-causing-delegated-call-to which is related.