From d107ee6ecd7279de63dfc22806dce5bf357e88af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Kon=C3=AD=C4=8Dek?= Date: Sun, 1 Aug 2010 11:13:52 +0000 Subject: [PATCH] Removed reparse from ContextActionsService, it hangs WPF designer. git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@6343 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61 --- .../ContextActions/ContextActionsService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Main/Base/Project/Src/Services/RefactoringService/ContextActions/ContextActionsService.cs b/src/Main/Base/Project/Src/Services/RefactoringService/ContextActions/ContextActionsService.cs index ea10e0d9dd..90c7a0993e 100644 --- a/src/Main/Base/Project/Src/Services/RefactoringService/ContextActions/ContextActionsService.cs +++ b/src/Main/Base/Project/Src/Services/RefactoringService/ContextActions/ContextActionsService.cs @@ -39,8 +39,8 @@ namespace ICSharpCode.SharpDevelop.Refactoring /// public IEnumerable GetAvailableActions(ITextEditor editor) { - var parseTask = ParserService.BeginParseCurrentViewContent(); - parseTask.Wait(); + //var parseTask = ParserService.BeginParseCurrentViewContent(); + //parseTask.Wait(); var editorContext = new EditorContext(editor); // could run providers in parallel foreach (var provider in this.providers) {