Fix focus vs flexbox interaction. (#405)

- Fix focus in flexbox. This required resetting the focus state at the
  beginning of the ComputeRequirement(), because it can now run several
  times.

  This resolves:https://github.com/ArthurSonzogni/FTXUI/issues/399

- Add Box::Union.

- Add a preliminary implementation of forwarding selected_box from
  within the flexbox.
This commit is contained in:
Arthur Sonzogni
2022-05-22 21:41:29 +02:00
committed by GitHub
parent f9256fa132
commit 11519ef1c6
10 changed files with 77 additions and 8 deletions

View File

@@ -20,8 +20,8 @@ namespace ftxui {
namespace {
bool g_cached = false;
Terminal::Color g_cached_supported_color;
bool g_cached = false; // NOLINT
Terminal::Color g_cached_supported_color; // NOLINT
Dimensions& FallbackSize() {
#if defined(__EMSCRIPTEN__)