mirror of
https://github.com/thegatesbrowser/thegates.git
synced 2025-08-26 08:17:38 -04:00
fix option button
This commit is contained in:
parent
1b057ca571
commit
710f005110
2 changed files with 3 additions and 0 deletions
|
@ -86,6 +86,7 @@ texture = ExtResource("3_1rllf")
|
||||||
expand_mode = 1
|
expand_mode = 1
|
||||||
|
|
||||||
[node name="Downloading" type="TextureRect" parent="SearchStatus"]
|
[node name="Downloading" type="TextureRect" parent="SearchStatus"]
|
||||||
|
visible = false
|
||||||
self_modulate = Color(1, 1, 1, 0.8)
|
self_modulate = Color(1, 1, 1, 0.8)
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
|
|
|
@ -23,4 +23,6 @@ func on_ui_visibility_changed(visible: bool) -> void:
|
||||||
|
|
||||||
func _input(event: InputEvent) -> void:
|
func _input(event: InputEvent) -> void:
|
||||||
if input_sync == null or not should_send: return
|
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)
|
input_sync.send_input_event(event)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue