mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-07 00:29:15 +00:00
LibWeb: Do not clear the selection, when query is not found
Fixes #4743
This commit is contained in:
parent
ad4634d0ed
commit
09463f147d
Notes:
github-actions[bot]
2025-05-26 09:24:03 +00:00
Author: https://github.com/chrisvis 🔰
Commit: 09463f147d
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4757
Reviewed-by: https://github.com/gmta ✅
3 changed files with 8 additions and 2 deletions
|
@ -726,11 +726,11 @@ Page::FindInPageResult Page::find_in_page_previous_match()
|
|||
|
||||
void Page::update_find_in_page_selection(Vector<GC::Root<DOM::Range>> matches)
|
||||
{
|
||||
clear_selection();
|
||||
|
||||
if (matches.is_empty())
|
||||
return;
|
||||
|
||||
clear_selection();
|
||||
|
||||
auto current_range = matches[m_find_in_page_match_index];
|
||||
auto common_ancestor_container = current_range->common_ancestor_container();
|
||||
auto& document = common_ancestor_container->document();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue