Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,6 @@ struct Bitmap : ftxui::Node
};
}

void SetBox(ftxui::Box box) override { box_ = box; }

void Render(ftxui::Screen &screen) override
{
for (std::size_t x = 0; x < width_; ++x) {
Expand Down Expand Up @@ -283,9 +281,8 @@ void game_iteration_canvas()
small_bm | ftxui::border }) });
};

auto container = ftxui::Container::Vertical({});
auto renderer = ftxui::Renderer(make_layout);

auto renderer = ftxui::Renderer(container, make_layout);

std::atomic<bool> refresh_ui_continue = true;

Expand Down