We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0791b0 commit cfe387dCopy full SHA for cfe387d
1 file changed
ICSharpCode.AvalonEdit/Search/SearchPanel.cs
@@ -323,7 +323,7 @@ public void FindPrevious()
323
}
324
325
326
- ToolTip messageView = new ToolTip { Placement = PlacementMode.Bottom, StaysOpen = false };
+ ToolTip messageView = new ToolTip { Placement = PlacementMode.Bottom, StaysOpen = true, Focusable = false };
327
328
void DoSearch(bool changeSelection)
329
{
@@ -368,7 +368,6 @@ void SearchLayerKeyDown(object sender, KeyEventArgs e)
368
switch (e.Key) {
369
case Key.Enter:
370
e.Handled = true;
371
- messageView.IsOpen = false;
372
if ((Keyboard.Modifiers & ModifierKeys.Shift) == ModifierKeys.Shift)
373
FindPrevious();
374
else
0 commit comments