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:
parent
732af58138
commit
82b4974a82
5 changed files with 710 additions and 28 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue