From 5dc3fec277aa543b2cdb2305f56bc2ac15efa8e4 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sun, 6 Nov 2022 12:20:11 +0100 Subject: Matrix/4chan: fix text input not being in order if typing text fast (for example xdotool --- src/Text.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src') diff --git a/src/Text.cpp b/src/Text.cpp index 0b6347d..26574bf 100644 --- a/src/Text.cpp +++ b/src/Text.cpp @@ -1289,6 +1289,15 @@ namespace QuickMedia dirtyText = true; dirtyCaret = true; } + + // TODO: Dont do this here! it's slow, but it's needed to process the change before the next event + updateGeometry(); + + if(editable && (dirtyCaret || caretMoveDirection != CaretMoveDirection::NONE)) { + updateCaret(); + dirtyCaret = false; + caretMoveDirection = CaretMoveDirection::NONE; + } } bool Text::draw(mgl::Window &target) -- cgit v1.2.3