Present tooltips and note unlabelled buttons.

This commit is contained in:
Nolan Darilek 2018-07-19 15:15:49 +00:00
parent 2c5babe103
commit 34e9799613

View File

@ -12,7 +12,10 @@ func focus_button():
var text = "Unlabelled"
if node.text:
text = node.text
print("%s: button" % text)
if text:
print("%s: button" % text)
else:
print("button")
var list_pos = 0
@ -102,6 +105,8 @@ func focused():
focus_tree()
else:
print("Focus entered.", node)
if node.hint_tooltip:
print(node.hint_tooltip)
func unfocused():
if node is ItemList: