1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-07-04 23:36:00 +02:00

Merge pull request #2263 from kallisto56/master

Fixed select next match after using `QuickFind`
This commit is contained in:
Brian Fiete 2025-06-09 12:05:10 +02:00 committed by GitHub
commit 671b6d4c91
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -7820,7 +7820,7 @@ namespace IDE.ui
{
var ewc = mEditWidget.mEditWidgetContent as SourceEditWidgetContent;
if (mQuickFind != null)
if ((mQuickFind != null) && (mQuickFind.mIsShowingMatches))
{
int usedCursorCount = 0;
for (var range in mQuickFind.mFoundRanges)