-
-
Notifications
You must be signed in to change notification settings - Fork 22k
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
Fix missing tooltips on "Advanced Import Settings for Scene" window #104804
Open
etherealxx
wants to merge
1
commit into
godotengine:master
Choose a base branch
from
etherealxx:fix-advanced-import-inspector-missing-tooltip
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Fix missing tooltips on "Advanced Import Settings for Scene" window #104804
etherealxx
wants to merge
1
commit into
godotengine:master
from
etherealxx:fix-advanced-import-inspector-missing-tooltip
+3
−0
Conversation
This file contains 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 comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
fire
approved these changes
Mar 30, 2025
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.
It looks good, but maybe editor people want to look.
fire
reviewed
Mar 30, 2025
Calinou
reviewed
Mar 31, 2025
Calinou
reviewed
Mar 31, 2025
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.
Tested locally, it works as expected.
In Godot, it's possible to customize how the engine imports 3D resource, by either clicking "Advanced..." button on Import Dock or double clicking the resource on FileSystem Dock. Doing so will open the Advanced Import Settings window, where user could inspect the 3D resource in a viewport, with the scene tree on the left and an inspector panel akin to the Import dock on the left. It contains the same settings from the Import dock, with some advanced additions. This commit fixes a regression since 4.2 where settings in the inspector panel on the right part of the window does not contain the same tooltips as its Import Dock counterpart (which were retrieved from the XML class reference).
6694006
to
7e00ea5
Compare
Calinou
approved these changes
Apr 1, 2025
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.
Resolves #83484
This commit fixes a regression since 4.2 where settings in the inspector panel on the right part of the "Advanced Import Settings for Scene" window does not contain the same tooltips as its Import Dock counterpart (which were retrieved from the XML class reference).
Before (4.4.1.stable) :

After:

The fix are borrowed from the Import Dock code (
editor\import_dock.cpp
) that has the same tooltips.Note: I don't think hard coding "ResourceImporterScene" as the object class is the best idea, perhaps those who knows the source better could help? Though i think it's safe for this case?