LibWeb+WebContent: Delete unused "has focus" flag from paint config

This commit is contained in:
Aliaksandr Kalenik 2025-06-28 04:59:19 +02:00 committed by Jelle Raaijmakers
parent 418409aa6f
commit b73525ba0e
Notes: github-actions[bot] 2025-07-04 14:14:20 +00:00
7 changed files with 0 additions and 11 deletions

View file

@ -1444,7 +1444,6 @@ RefPtr<Painting::DisplayList> TraversableNavigable::record_display_list(DevicePi
DOM::Document::PaintConfig paint_config;
paint_config.paint_overlay = paint_options.paint_overlay == PaintOptions::PaintOverlay::Yes;
paint_config.should_show_line_box_borders = paint_options.should_show_line_box_borders;
paint_config.has_focus = paint_options.has_focus;
paint_config.canvas_fill_rect = Gfx::IntRect { {}, content_rect.size() };
return document->record_display_list(paint_config);
}