-
-
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
Minor changes to the AnimationPlayer editor #19475
Conversation
8a2368d
to
7ac9279
Compare
} | ||
|
||
if (path_rect.has_point(p_pos)) { | ||
return animation->track_get_path(track); | ||
} | ||
|
||
if (update_mode_rect.has_point(p_pos)) { | ||
return TTR("Update Mode (How this property is set)."); | ||
return TTR("Update Mode (How this property is set)"); |
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.
Why remove the dot here? It's inconsistent with other changes where you add a dot.
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.
There's no dot because the tooltip itself is not written like a phrase, but like a title ("Update Mode" instead of "Update mode.").
} | ||
|
||
if (interp_mode_rect.has_point(p_pos)) { | ||
return TTR("Interpolation Mode"); | ||
} | ||
|
||
if (loop_mode_rect.has_point(p_pos)) { | ||
return TTR("Loop Wrap Mode (Interpolate end with beginning on loop"); | ||
return TTR("Loop Wrap Mode (Interpolate end with beginning on loop)"); |
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.
Dot needed here too.
Maybe this pr fix this issue #19481. |
@guilhermefelipecgs Yep, it does. |
I like Edit as text, Its more consistent with other panels and more friendly usability wise. It's easy to miss that this is an important feature if it's an icon. The other changes are fine. |
@reduz Really? To me, it looks really weird having a text-based button in the middle of icon-based ones. |
fdb2d38
to
e926a1f
Compare
Very well, the button is back to being text-based. |
e926a1f
to
ad02967
Compare
1a54701
to
cc036a6
Compare
cc036a6
to
0218129
Compare
really insert key?
printing for when inserting keys in an audio track.