From 26f7cf2a37a9daf89c44db85a4b189b259e852db Mon Sep 17 00:00:00 2001 From: Sergio Valor Date: Sun, 24 Sep 2023 09:41:49 +0200 Subject: [PATCH] FIX: enterID no actualizaba las notificaciones de pantalla --- source/enter_id.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source/enter_id.cpp b/source/enter_id.cpp index 464559d..8138a34 100644 --- a/source/enter_id.cpp +++ b/source/enter_id.cpp @@ -170,6 +170,9 @@ void EnterID::update() // Actualiza el cursor cursor = (counter % 20 >= 10) ? " " : "_"; + + // Actualiza las notificaciones + screen->updateNotifier(); } } @@ -307,7 +310,7 @@ void EnterID::initName() pos = 0; } else - {// En caso contrario, copia el texto al vector y coloca el cursor en posición + { // En caso contrario, copia el texto al vector y coloca el cursor en posición const int len = std::min((int)options->online.jailerID.size(), maxLenght); for (int i = 0; i < len; ++i) {