1
0
Fork 0
mirror of https://github.com/Orama-Interactive/Pixelorama.git synced 2025-01-30 23:19:49 +00:00

Remove unneeded Global.update_hint_tooltips() call

This commit is contained in:
Manolis Papadeas 2021-08-27 00:49:01 +03:00
parent ddc69b8282
commit 79e1ab5e61
2 changed files with 1 additions and 2 deletions

View file

@ -17,7 +17,7 @@ func _ready() -> void:
add_child(tween)
tween.connect("tween_step", self, "_on_tween_step")
update_transparent_checker_offset()
# signals regarding zoom stats
Global.zoom_level_label.connect("gui_input",self,"zoom_label_clicked")
Global.zoom_level_spinbox.connect("value_changed", self, "zoom_value_changed")

View file

@ -26,7 +26,6 @@ onready var tools := [
func _ready() -> void:
for t in tools:
t[0].connect("pressed", self, "_on_Tool_pressed", [t[0]])
Global.update_hint_tooltips()
# Resize tools panel when window gets resized
get_tree().get_root().connect("size_changed", self, "_on_ToolsAndCanvas_dragged")