We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86539c0 commit 653ef1bCopy full SHA for 653ef1b
app/src/c/converse/session_window.c
@@ -247,6 +247,9 @@ static void prv_update_thinking_layer(SessionWindow* sw) {
247
visible = true;
248
} else if (entry_type == EntryTypeResponse) {
249
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;
253
}
254
255
0 commit comments