fix option button

This commit is contained in:
Nordup 2023-07-05 16:52:12 +04:00
parent 1b057ca571
commit 710f005110
2 changed files with 3 additions and 0 deletions

View file

@ -86,6 +86,7 @@ texture = ExtResource("3_1rllf")
expand_mode = 1
[node name="Downloading" type="TextureRect" parent="SearchStatus"]
visible = false
self_modulate = Color(1, 1, 1, 0.8)
layout_mode = 1
anchors_preset = 15

View file

@ -23,4 +23,6 @@ func on_ui_visibility_changed(visible: bool) -> void:
func _input(event: InputEvent) -> void:
if input_sync == null or not should_send: return
if event is InputEventMouseButton and event.button_index == MOUSE_BUTTON_LEFT: return
input_sync.send_input_event(event)