This commit is contained in:
ArthurSonzogni
2024-12-01 17:44:06 +01:00
parent c1c4caf24f
commit 07202b7757
11 changed files with 22 additions and 32 deletions

View File

@@ -21,7 +21,6 @@ struct Pixel {
underlined(false),
underlined_double(false),
strikethrough(false),
selectable(false),
automerge(false) {}
// A bit field representing the style:
@@ -31,7 +30,6 @@ struct Pixel {
bool inverted : 1;
bool underlined : 1;
bool underlined_double : 1;
bool selectable : 1;
bool strikethrough : 1;
bool automerge : 1;

View File

@@ -10,7 +10,6 @@
#include "ftxui/screen/image.hpp" // for Pixel, Image
#include "ftxui/screen/terminal.hpp" // for Dimensions
#include "ftxui/component/captured_mouse.hpp" // for CapturedMouse
namespace ftxui {