Skip to content

Commit 653ef1b

Browse files
committed
Keep showing the thinking layer when making a timer.
Signed-off-by: Katharine Berry <[email protected]>
1 parent 86539c0 commit 653ef1b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

app/src/c/converse/session_window.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,9 @@ static void prv_update_thinking_layer(SessionWindow* sw) {
247247
visible = true;
248248
} else if (entry_type == EntryTypeResponse) {
249249
visible = !conversation_entry_get_response(entry)->complete;
250+
} else if (entry_type == EntryTypeWidget) {
251+
// Locally created widgets should still have a response coming after.
252+
visible = conversation_entry_get_widget(entry)->locally_created;
250253
}
251254
}
252255

0 commit comments

Comments
 (0)