Fix incorrect draw color on TextInputForm rendering the input buffer

This commit is contained in:
2025-02-24 14:33:49 -05:00
parent bd02c91c45
commit c4f88c9021

View File

@@ -71,7 +71,7 @@ namespace JUI {
if (!focused || !hide_autocomplete_on_select)
TextBase::Draw(pos, size, autocomplete_text, this->text_size, autocomplete_color);
TextBase::Draw(pos, size, content, text_size, autocomplete_color);
TextBase::Draw(pos, size, content, text_size, text_color);
//TextRect::InnerDraw();
}