diff --git a/CHANGELOG.md b/CHANGELOG.md index ad020ca0d..10afbaf59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [v0.7.1] - Unreleased This update has been brought to you by the contributions of: - Igor Santarek (jegor377), rob-a-bolton, Kinwailo ### Added diff --git a/src/Autoload/Global.gd b/src/Autoload/Global.gd index 126dff08c..cfea97677 100644 --- a/src/Autoload/Global.gd +++ b/src/Autoload/Global.gd @@ -700,7 +700,6 @@ func animation_tags_changed(value : Array) -> void: animation_timeline.first_frame = tag.from - 1 animation_timeline.last_frame = min(frames.size() - 1, tag.to - 1) - func update_hint_tooltips() -> void: var root = get_tree().get_root() diff --git a/src/Canvas.gd b/src/Canvas.gd index 90d6791cf..2433b2e27 100644 --- a/src/Canvas.gd +++ b/src/Canvas.gd @@ -39,6 +39,7 @@ func _ready() -> void: func _draw() -> void: var current_cels : Array = Global.frames[Global.current_frame].cels + if Global.onion_skinning: onion_skinning() diff --git a/src/Classes/Drawers.gd b/src/Classes/Drawers.gd index b0f6da643..304ada89c 100644 --- a/src/Classes/Drawers.gd +++ b/src/Classes/Drawers.gd @@ -1,3 +1,4 @@ + class_name Drawer class SimpleDrawer: