From b56afce48ccd472cd2c3a53e619de0db1e7227a4 Mon Sep 17 00:00:00 2001 From: Arthur Sonzogni Date: Wed, 28 Dec 2022 13:17:56 +0100 Subject: [PATCH] Fix blinking cursor shape. (#539) --- include/ftxui/screen/screen.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/ftxui/screen/screen.hpp b/include/ftxui/screen/screen.hpp index 4d15b95..96242a3 100644 --- a/include/ftxui/screen/screen.hpp +++ b/include/ftxui/screen/screen.hpp @@ -87,8 +87,8 @@ class Screen { Block = 2, UnderlineBlinking = 3, Underline = 4, - Bar = 5, - BarBlinking = 6, + BarBlinking = 5, + Bar = 6, }; Shape shape; };