Added core.set_active_view(); removed focusable boolean from View

This commit is contained in:
rxi
2020-05-19 14:55:46 +01:00
parent 8ec717f240
commit bc4bf3d384
7 changed files with 27 additions and 21 deletions
+1 -1
View File
@@ -22,7 +22,6 @@ local TreeView = View:extend()
function TreeView:new()
TreeView.super.new(self)
self.scrollable = true
self.focusable = false
self.visible = true
self.init_size = true
self.cache = {}
@@ -112,6 +111,7 @@ end
function TreeView:on_mouse_pressed(button, x, y)
core.set_active_view(core.last_active_view)
if not self.hovered_item then
return
elseif self.hovered_item.type == "dir" then