Merge pull request #13039 from sketchyfun/animation_key_selection_fix
Fixed issues with clicking animation keys that are on frame 0
This commit is contained in:
commit
e89ec04be8
|
@ -2079,7 +2079,7 @@ void AnimationKeyEditor::_track_editor_gui_input(const Ref<InputEvent> &p_input)
|
|||
return;
|
||||
}
|
||||
|
||||
if (mpos.x < name_limit) {
|
||||
if (mpos.x < name_limit - (type_icon[0]->get_width() / 2.0)) {
|
||||
//name column
|
||||
|
||||
// area
|
||||
|
|
Loading…
Reference in New Issue