Switch to rounded borders. (#175)

They are nicer.
It would be nice supporting a way for FTXUI to let the user chose what
they prefer instead.
This commit is contained in:
Arthur Sonzogni
2021-08-07 22:30:55 +02:00
committed by GitHub
parent 3f005d7715
commit d197e2f4fb
2 changed files with 12 additions and 7 deletions

View File

@@ -12,7 +12,12 @@
namespace ftxui {
static wchar_t simple_border_charset[] = L"┌┐└┘─│┬┴┤├";
static wchar_t simple_border_charset[] = L"╭╮╰╯─│┬┴┤├";
// For reference, here is the charset for normal border:
// L"┌┐└┘─│┬┴┤├";
// TODO(arthursonzogni): Consider adding options to choose the kind of borders
// to use.
class Border : public Node {
public: