mirror of
https://github.com/lightsoutgames/godot-accessibility.git
synced 2024-11-21 19:45:55 +00:00
Only prevent checkbox toggles if node is focused.
This commit is contained in:
parent
5bf3bb285b
commit
1037becadf
|
@ -53,10 +53,11 @@ func checkbox_focus():
|
|||
tts.speak(tokens.join(" "), false)
|
||||
|
||||
func checkbox_toggled(checked):
|
||||
if checked:
|
||||
tts.speak("checked", true)
|
||||
else:
|
||||
tts.speak("unchecked", true)
|
||||
if node.has_focus():
|
||||
if checked:
|
||||
tts.speak("checked", true)
|
||||
else:
|
||||
tts.speak("unchecked", true)
|
||||
|
||||
var spoke_hint_tooltip
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user