mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-12-16 01:48:56 +08:00
Feature: Add the dashed style. (#594)
This commit is contained in:
@@ -14,12 +14,13 @@ bool IsCell(int x, int y) {
|
||||
}
|
||||
|
||||
// NOLINTNEXTLINE
|
||||
static std::string charset[5][6] = {
|
||||
{"┌", "┐", "└", "┘", "─", "│"}, //
|
||||
{"┏", "┓", "┗", "┛", "━", "┃"}, //
|
||||
{"╔", "╗", "╚", "╝", "═", "║"}, //
|
||||
{"╭", "╮", "╰", "╯", "─", "│"}, //
|
||||
{" ", " ", " ", " ", " ", " "}, //
|
||||
static std::string charset[6][6] = {
|
||||
{"┌", "┐", "└", "┘", "─", "│"}, // LIGHT
|
||||
{"┏", "┓", "┗", "┛", "╍", "╏"}, // DASHED
|
||||
{"┏", "┓", "┗", "┛", "━", "┃"}, // HEAVY
|
||||
{"╔", "╗", "╚", "╝", "═", "║"}, // DOUBLE
|
||||
{"╭", "╮", "╰", "╯", "─", "│"}, // ROUNDED
|
||||
{" ", " ", " ", " ", " ", " "}, // EMPTY
|
||||
};
|
||||
|
||||
int Wrap(int input, int modulo) {
|
||||
|
||||
Reference in New Issue
Block a user