-
Notifications
You must be signed in to change notification settings - Fork 1
Phase 1: Remaining items — keyframe resampling, node grouping (#256) #271
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
35ccef8
Add animation keyframe resampling and decimation — Phase 1, item 8
fernandotonon 51a74a0
Add Node Grouping (Ctrl+G / Ctrl+Shift+G) — Phase 1, item 5
fernandotonon 32984a7
Rename Group → Group Nodes, enable only with 2+ nodes selected
fernandotonon 8a5caac
Add Pivot Point Editing (P key) — Phase 1, item 4
fernandotonon 36ab2bd
Add Undo History Panel — Phase 1, item 9
fernandotonon c6010bb
Add Drag-and-Drop Node Reparenting — Phase 1, item 2
fernandotonon cb6e83c
Fix drag-and-drop reparenting: use shared property instead of mime data
fernandotonon 4e1ea6b
Replace broken QML drag-and-drop with button-based reparenting
fernandotonon a61771f
Auto-delete empty group nodes after reparenting
fernandotonon a51bfb3
Cascade-delete empty group ancestors after reparenting
fernandotonon ad797ce
Bump version to 2.23.0, add tests for Phase 1 remaining MCP tools
fernandotonon f879312
Merge branch 'master' into feat/phase1-remaining
fernandotonon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: fernandotonon/QtMeshEditor
Length of output: 2657
🏁 Script executed:
# Let's also check if there are any imports related to Layouts in the file head -30 qml/PropertiesPanel.qmlRepository: fernandotonon/QtMeshEditor
Length of output: 810
🌐 Web query:
Qt Quick Row Layout.fillWidth behavior - does Row support Layout attached properties💡 Result:
No.
Row(QtQuick) is a positioner, not part of the Qt Quick Layouts system, so it does not honorLayout.*attached properties likeLayout.fillWidth.Rowjust positions children; any “fill” behavior must be done via explicitwidthbindings/anchors (or spacers you size yourself).Rowprovides a different attached object (Positioner) for per-child positioning info, notLayout. [2]If you want
Layout.fillWidth/Layout.fillHeightbehavior, useRowLayout(QtQuick.Layouts). In aRowLayout, child items supportLayout.fillWidthand otherLayout.*attached properties. [1]Practical rule:
RowLayoutwhen you want automatic resizing viaLayout.*. [1]Rowwhen you only want simple positioning and will manage sizes yourself. [2]Sources: RowLayout docs [1], Positioner/Row docs [2].
Layout.fillWidthwon't work inRow—button won't right-align as intended.Rowis a positioner, not part of Qt Quick Layouts, so it ignoresLayout.*attached properties. The spacer at line 131 won't expand, and the "↑ to Root" button stays packed next to the label.Replace
RowwithItemand use explicit anchoring (or switch toRowLayoutfromQtQuick.Layouts):Proposed fix
🤖 Prompt for AI Agents