Add toolbar tooltips

This commit is contained in:
Francesco Abbate
2021-02-19 11:50:20 +01:00
parent 335d704cab
commit ef24828307
2 changed files with 19 additions and 2 deletions
+11
View File
@@ -39,6 +39,17 @@ function StatusView:show_message(icon, icon_color, text)
end
function StatusView:show_tooltip(text)
self.message = { style.text, text }
self.message_timeout = system.get_time() + 1000
end
function StatusView:remove_tooltip()
self.message_timeout = 0
end
function StatusView:update()
self.size.y = style.font:get_height() + style.padding.y * 2