Skip to content

Commit

Permalink
Fix markers not properly setting the texture
Browse files Browse the repository at this point in the history
  • Loading branch information
rainbowism committed Nov 19, 2020
1 parent 747f483 commit 640ce72
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion src/GUI/GUI.tscn
Original file line number Diff line number Diff line change
Expand Up @@ -986,7 +986,6 @@ __meta__ = {
}

[node name="TooltipPopup" type="PopupPanel" parent="."]
visible = true
margin_right = 8.0
margin_bottom = 8.0
mouse_filter = 2
Expand Down
1 change: 1 addition & 0 deletions src/Objects/Marker.gd
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ func init() -> void:
sprite = $Sprite

func _ready() -> void:
init()
connect("mouse_entered", self, "_on_mouse_entered")
connect("mouse_exited", self, "_on_mouse_exited")
add_to_group(Util.GROUP_MARKER)
Expand Down

0 comments on commit 640ce72

Please sign in to comment.