Chat UI polish: cross-client sync, auto-reload, voice/speaker toggle, scroll preservation#469
Merged
Merged
Conversation
- Add MaxWidth=900 to 11 pages for consistent layout - Fix page centering (wrapper Grid pattern for ScrollViewer pages) - Fix tray menu showing wrong gateway port (use registry) - Remove non-functional scheduler toggle, replace with status badge - Add cached-data-first loading for cron and skills pages - Add loading spinner to skills page Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
… scroll preservation - ToolCallId matching for parallel tool calls (ChatTimelineReducer) - Cross-client user message sync (echo suppression + remote user display) - Auto-reload on connect (eager history loading when sessions arrive) - LoadHistoryAsync retry on failure with bounded retry count (max 3) - Speaker toggle (read-aloud to stop) in timeline - STT model-not-installed dialog with light-dismiss - Recording pill guard (onRecordingStarted callback) - VoiceServiceInstance lazy creation fix - Scroll position preservation across page navigation (static cache, bounded) - Compact dropdown sizing for tray popup - No-disconnect-flash fix (keep existing host when provider null) - Clear stale state on reconnect (_locallyInitiatedThreads, _localSentTexts) - FindToolEntryId: don't fall back to ActiveToolCallId when provided ID not found - 9 new tests covering auto-reload, retry, ToolCallId matching Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Resolve chat UI polish conflicts with current master and keep local echo suppression from hiding future remote messages after failed sends. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This was referenced May 21, 2026
Closed
kenehong
added a commit
to kenehong/openclaw-windows-node
that referenced
this pull request
May 21, 2026
Resolved conflicts: - OpenClawComposer.cs: kept both new params (OnAttachmentPasted + IsCompact) - OpenClawChatRoot.cs: pass both OnAttachmentPasted and IsCompact through - OpenClawChatDataProvider.cs: accepted upstream cross-client user echo handling (openclaw#469) — supersedes our earlier rollback of that work. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Chat UI improvements across 13 files (+761/-68 lines), covering cross-client sync, auto-reload on connect, voice/TTS controls, and scroll preservation.
Changes
Core Chat Data Provider
ToolCallId Matching (ChatTimelineReducer)
Voice & Speaker Controls
Scroll & UI
Tests
Review Notes