diff options
author | Markus Sauermann <6299227+Sauermann@users.noreply.github.com> | 2022-03-11 13:14:19 +0100 |
---|---|---|
committer | Markus Sauermann <6299227+Sauermann@users.noreply.github.com> | 2022-03-11 13:17:13 +0100 |
commit | 24942214d90ccaaad7a8eac77ccf2ec6d79b2446 (patch) | |
tree | 1ceca8e5a3dd0a66405086283eaae3b847c2b500 /editor/animation_track_editor_plugins.h | |
parent | 1e099afc8ac420f5c97b07067e28d6309ed55ae7 (diff) | |
download | redot-engine-24942214d90ccaaad7a8eac77ccf2ec6d79b2446.tar.gz |
Use get_cursor_shape for identifying the cursor shape in AnimationTrackEditTypeAudio
get_cursor_shape() is used in cases where a Control displays different cursors in different areas.
There is no need to set the default cursor shape on every mouse move event.
Diffstat (limited to 'editor/animation_track_editor_plugins.h')
-rw-r--r-- | editor/animation_track_editor_plugins.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/animation_track_editor_plugins.h b/editor/animation_track_editor_plugins.h index 271c1a000b..7022f524c5 100644 --- a/editor/animation_track_editor_plugins.h +++ b/editor/animation_track_editor_plugins.h @@ -119,6 +119,7 @@ class AnimationTrackEditTypeAudio : public AnimationTrackEdit { int len_resizing_index; float len_resizing_from_px; float len_resizing_rel; + bool over_drag_position = false; protected: static void _bind_methods(); @@ -134,6 +135,8 @@ public: virtual bool is_key_selectable_by_distance() const override; virtual void draw_key(int p_index, float p_pixels_sec, int p_x, bool p_selected, int p_clip_left, int p_clip_right) override; + virtual CursorShape get_cursor_shape(const Point2 &p_pos) const override; + AnimationTrackEditTypeAudio(); }; |