Don't speak range changes if the node isn't focused.

This commit is contained in:
Nolan Darilek 2019-10-18 11:35:04 -05:00
parent e1d24a00a4
commit 6982e2023d

View File

@ -259,6 +259,7 @@ func range_focused():
TTS.speak(tokens.join(": "), false)
func range_value_changed(value):
if node.has_focus():
TTS.speak("%s" % value, true)
func text_edit_focus():