From 1d4544d399e3d51dd7dc4ab6ce8714ad9bc3da78 Mon Sep 17 00:00:00 2001 From: casey langen Date: Mon, 28 May 2018 23:49:43 -0700 Subject: [PATCH] Fixed a bug where the DEL key wasn't triggering a "TextChanged" event in TextInput. --- src/musikcube/cursespp/TextInput.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/musikcube/cursespp/TextInput.cpp b/src/musikcube/cursespp/TextInput.cpp index 67991d52f..38fa7b5e3 100755 --- a/src/musikcube/cursespp/TextInput.cpp +++ b/src/musikcube/cursespp/TextInput.cpp @@ -226,6 +226,7 @@ bool TextInput::KeyPress(const std::string& key) { removeUtf8Char(this->buffer, this->position + 1); this->bufferLength = u8len(buffer); this->Redraw(); + this->TextChanged(this, this->buffer); return true; } }