mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-11-15 11:38:56 +08:00
Fix format. Try compile on Windows.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
#include "ftxui/dom/node_decorator.hpp"
|
||||
#include "ftxui/dom/elements.hpp"
|
||||
#include "ftxui/dom/node_decorator.hpp"
|
||||
|
||||
namespace ftxui {
|
||||
|
||||
@@ -11,7 +11,7 @@ class Bold : public NodeDecorator {
|
||||
void Render(Screen& screen) override {
|
||||
for (int y = box_.y_min; y <= box_.y_max; ++y) {
|
||||
for (int x = box_.x_min; x <= box_.x_max; ++x) {
|
||||
screen.PixelAt(x,y).bold = true;
|
||||
screen.PixelAt(x, y).bold = true;
|
||||
}
|
||||
}
|
||||
Node::Render(screen);
|
||||
|
||||
Reference in New Issue
Block a user