From d7dc5bd423c6958186806d4db7f09f9d06d5b093 Mon Sep 17 00:00:00 2001 From: Dmitry Batkovich Date: Fri, 26 Feb 2016 17:23:31 +0300 Subject: [PATCH] inspection tool window: clear view busy status if canceled --- .../codeInspection/ex/GlobalInspectionContextImpl.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/platform/lang-impl/src/com/intellij/codeInspection/ex/GlobalInspectionContextImpl.java b/platform/lang-impl/src/com/intellij/codeInspection/ex/GlobalInspectionContextImpl.java index c31a636a0056..ad5177524678 100644 --- a/platform/lang-impl/src/com/intellij/codeInspection/ex/GlobalInspectionContextImpl.java +++ b/platform/lang-impl/src/com/intellij/codeInspection/ex/GlobalInspectionContextImpl.java @@ -799,6 +799,9 @@ public class GlobalInspectionContextImpl extends GlobalInspectionContextBase imp getPresentation(toolWrapper).finalCleanup(); } } + if (myView != null) { + myView.getTree().setPaintBusy(false); + } super.cleanup(); }