Skip to content

Commit e891639

Browse files
committed
Ladybird/AppKit: Use correct flag name for WebContent debugging
This fixes a CoPilot SNAFU from 1e68e48 where I tested the changes on Linux and assumed CI would catch any macOS problems.
1 parent 25e9d2c commit e891639

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Ladybird/AppKit/main.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
Ladybird::WebContentOptions web_content_options {
7272
.enable_gpu_painting = use_gpu_painting ? Ladybird::EnableGPUPainting::Yes : Ladybird::EnableGPUPainting::No,
7373
.use_lagom_networking = Ladybird::UseLagomNetworking::Yes,
74-
.debug_web_content = debug_web_content ? Ladybird::DebugWebContent::Yes : Ladybird::DebugWebContent::No,
74+
.wait_for_debugger = debug_web_content ? Ladybird::WaitForDebugger::Yes : Ladybird::WaitForDebugger::No,
7575
};
7676

7777
auto* delegate = [[ApplicationDelegate alloc] init:move(initial_urls)

0 commit comments

Comments
 (0)