Skip to content

Commit 8ab87c1

Browse files
committed
reinstated "Inspecting..." status text (from the old 1.x inspection results toolwindow!)
1 parent f8f1b14 commit 8ab87c1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

RetailCoder.VBE/Inspections/Inspector.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
using System.Threading.Tasks;
77
using Rubberduck.Parsing.VBA;
88
using Rubberduck.Settings;
9+
using Rubberduck.UI;
910

1011
namespace Rubberduck.Inspections
1112
{
@@ -54,6 +55,7 @@ public async Task<IList<ICodeInspectionResult>> FindIssuesAsync(RubberduckParser
5455

5556
await Task.Yield();
5657

58+
state.OnStatusMessageUpdate(RubberduckUI.CodeInspections_Inspecting);
5759
UpdateInspectionSeverity();
5860
//OnReset();
5961

@@ -84,6 +86,7 @@ public async Task<IList<ICodeInspectionResult>> FindIssuesAsync(RubberduckParser
8486
}
8587

8688
Task.WaitAll(inspections);
89+
state.OnStatusMessageUpdate(RubberduckUI.ResourceManager.GetString("ParserState_" + state.Status)); // should be "Ready"
8790

8891
return allIssues.ToList();
8992
}

0 commit comments

Comments
 (0)