Only present tab focus if it has actually changed.

This commit is contained in:
Nolan Darilek 2019-09-03 12:58:47 -05:00
parent 75a65fa81c
commit cf8ede147d

View File

@ -153,7 +153,6 @@ func focus_tab_container():
func input_tab_container(event):
if event.echo or not event.pressed:
return
tts.stop()
var new_tab = node.current_tab
if event.scancode == KEY_RIGHT:
new_tab += 1
@ -163,7 +162,9 @@ func input_tab_container(event):
new_tab = node.get_tab_count() - 1
elif new_tab >= node.get_tab_count():
new_tab = 0
if node.current_tab != new_tab:
node.current_tab = new_tab
tts.stop()
focus_tab_container()
func focus_tree():