Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 28aa13c

Browse files
committed
oops, got my default parameter wrong
1 parent e389846 commit 28aa13c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

shell/common/engine.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -729,9 +729,9 @@ class Engine final : public RuntimeDelegate, PointerDataDispatcher::Delegate {
729729
// |RuntimeDelegate|
730730
void ScheduleFrame(bool regenerate_layer_tree) override;
731731

732-
/// Schedule a frame with the default parameter of not regenerating the layer
732+
/// Schedule a frame with the default parameter of regenerating the layer
733733
/// tree.
734-
void ScheduleFrame() { ScheduleFrame(false); }
734+
void ScheduleFrame() { ScheduleFrame(true); }
735735

736736
// |RuntimeDelegate|
737737
FontCollection& GetFontCollection() override;

0 commit comments

Comments
 (0)