This commit is contained in:
yuni 2024-04-15 18:22:50 +02:00
parent fd741ae905
commit f85e01c6f6

View file

@ -462,7 +462,7 @@ fn update_hud(
} }
// Highlight most recent line if in a conversation // Highlight most recent line if in a conversation
if row > 0 && (q_choices.is_empty() || freshest_line > 0.5) { if row > 0 && (!q_choices.is_empty() || freshest_line > 0.5) {
chat.sections[row-1].style.color = bright; chat.sections[row-1].style.color = bright;
} }