Skip to content

Commit

Permalink
update CI patch for EventWriter::send deprecation (#18044)
Browse files Browse the repository at this point in the history
# Objective

- EventWriter::send has been deprecated, but it was used by one of the
CI patch

## Solution

- Use EventWriter::write instead
  • Loading branch information
mockersf authored Feb 26, 2025
1 parent 4b1745f commit 23cf8ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/example-showcase/extra-window-resized-events.patch
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ index df0aab42d..6e28a6e9c 100644
}
}

+ window_resized.send(WindowResized {
+ window_resized.write(WindowResized {
+ window,
+ width: win.width(),
+ height: win.height(),
Expand Down

0 comments on commit 23cf8ff

Please sign in to comment.