Skip to content

Commit ba47327

Browse files
committed
Fix compile error
1 parent 3e2538d commit ba47327

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

toolkit/editor/editor/ui/windows/outline.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Outline::Run()
9898
// @todo: The order of the entites is arbitrary. We should allow the user to move and sort the entities as they like.
9999
ImGui::BeginChild("ScrollingRegion", ImVec2(0, -ImGui::GetFrameHeightWithSpacing()), false, ImGuiWindowFlags_HorizontalScrollbar);
100100
{
101-
Game::Filter filter = Game::FilterBuilder::FilterBuilder().Including<Game::Entity>().Build();
101+
Game::Filter filter = Game::FilterBuilder().Including<Game::Entity>().Build();
102102
Game::Dataset data = state.editorWorld->Query(filter);
103103

104104
bool contextMenuOpened = false;

0 commit comments

Comments
 (0)