From 09b7a651b85d8711d89d3934d6d995d9a1b21ad6 Mon Sep 17 00:00:00 2001 From: BenH Date: Sun, 19 Nov 2017 14:05:33 +0000 Subject: Fixed issue with animation keys that are on frame 0 being difficult to click --- editor/animation_editor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'editor/animation_editor.cpp') diff --git a/editor/animation_editor.cpp b/editor/animation_editor.cpp index 1afa1e708a..7d877bdb8c 100644 --- a/editor/animation_editor.cpp +++ b/editor/animation_editor.cpp @@ -2079,7 +2079,7 @@ void AnimationKeyEditor::_track_editor_gui_input(const Ref &p_input) return; } - if (mpos.x < name_limit) { + if (mpos.x < name_limit - (type_icon[0]->get_width() / 2.0)) { //name column // area -- cgit v1.2.3