mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
LibWeb: Fix build with DEBUG_HIGHLIGHT_FOCUSED_FRAME
This commit is contained in:
parent
a27d118085
commit
e07d14f4d9
Notes:
sideshowbarker
2024-07-19 01:18:55 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/e07d14f4d93
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ void FrameBox::paint(PaintContext& context, PaintPhase phase)
|
|||
context.painter().restore();
|
||||
|
||||
#ifdef DEBUG_HIGHLIGHT_FOCUSED_FRAME
|
||||
if (node().content_frame()->is_focused_frame()) {
|
||||
if (dom_node().content_frame()->is_focused_frame()) {
|
||||
context.painter().draw_rect(absolute_rect().to<int>(), Color::Cyan);
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue