[Fix] Keep the Content panel folder selection when switching bottom dock tabs - #90
Open
miogds wants to merge 1 commit into
Open
[Fix] Keep the Content panel folder selection when switching bottom dock tabs#90miogds wants to merge 1 commit into
miogds wants to merge 1 commit into
Conversation
…ock tabs The bottom dock builds only the active tab's view, so leaving the Content (asset) browser for Console and coming back recreated AssetBrowserView and reset its @State to the default Models category. Move the browser's navigation state (selected category/folder, open subfolder trail, expanded nodes, highlighted asset) into AssetBrowserNavigationState, owned by EditorView as a @StateObject and passed into the browser, so the same place is restored when the tab is shown again. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
4 tasks
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
AssetBrowserViewwas recreated on every switch and its@Statestarted over.AssetBrowserNavigationStateobservable object, owned byEditorViewas a@StateObjectand passed into the browser. The browser reads and writes it through private computed properties, so the rest of the browser code is unchanged.Test plan
swift buildswift test --filter AssetBrowserViewTests(27 tests pass, including two new ones covering the default state and a rebuilt browser restoring the shared navigation)🤖 Generated with Claude Code