1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-12 05:14:10 +02:00

Find in Watch

This commit is contained in:
Brian Fiete 2024-03-25 06:18:50 -04:00
parent 732af58138
commit 82b4974a82
5 changed files with 710 additions and 28 deletions

View file

@ -3824,7 +3824,10 @@ namespace IDE
{
var textPanel = GetActiveTextPanel();
if (textPanel != null)
{
textPanel.ShowQuickFind(isReplace);
return;
}
else
{
if (let activeWindow = GetActiveWindow())
@ -3842,6 +3845,12 @@ namespace IDE
}
}
}
var activePanel = GetActivePanel();
if (var watchPanel = activePanel as WatchPanel)
{
watchPanel.mListView.ShowFind();
}
}
[IDECommand]
@ -3942,6 +3951,12 @@ namespace IDE
}
}
}
var activePanel = GetActivePanel();
if (var watchPanel = activePanel as WatchPanel)
{
watchPanel.mListView.FindNext(dir);
}
}
void DoShowNextDocumentPanel()