mirror of
https://github.com/lightsoutgames/godot-accessibility.git
synced 2024-11-24 21:05:57 +00:00
This algorithm still needs work, but start by calling methods that actually exist.
This commit is contained in:
parent
4ce013787c
commit
0d00db483d
|
@ -31,7 +31,7 @@ func click(item := node, button_index = BUTTON_LEFT):
|
||||||
func _guess_label():
|
func _guess_label():
|
||||||
if node is Label:
|
if node is Label:
|
||||||
return
|
return
|
||||||
if node.has_property("text") and node.text:
|
if node.get("text"):
|
||||||
return
|
return
|
||||||
var tokens = PoolStringArray([])
|
var tokens = PoolStringArray([])
|
||||||
var to_check = node
|
var to_check = node
|
||||||
|
|
Loading…
Reference in New Issue
Block a user