Skip to content
This repository was archived by the owner on Oct 16, 2020. It is now read-only.

Commit 4170e41

Browse files
fix #542: Code completion window description tooltip missing
1 parent a0d84c9 commit 4170e41

1 file changed

Lines changed: 0 additions & 7 deletions

File tree

src/Libraries/AvalonEdit/ICSharpCode.AvalonEdit/CodeCompletion/CompletionWindow.cs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,6 @@ public CompletionWindow(TextArea textArea) : base(textArea)
6464
}
6565

6666
#region ToolTip handling
67-
public bool ShowDocumentationTooltips { get; set; }
68-
6967
void toolTip_Closed(object sender, RoutedEventArgs e)
7068
{
7169
// Clear content after tooltip is closed.
@@ -77,11 +75,6 @@ void toolTip_Closed(object sender, RoutedEventArgs e)
7775

7876
void completionList_SelectionChanged(object sender, SelectionChangedEventArgs e)
7977
{
80-
if (!ShowDocumentationTooltips) {
81-
toolTip.IsOpen = false;
82-
return;
83-
}
84-
8578
var item = completionList.SelectedItem;
8679
if (item == null)
8780
return;

0 commit comments

Comments
 (0)