diff options
| author | ruki <[email protected]> | 2024-04-07 23:13:30 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2024-04-07 23:13:30 +0800 |
| commit | 2a99fd133daea2808253ff1d8545d53c700709af (patch) | |
| tree | 3aa36a4088a193f90d176efbc1c3d09ef8606c69 /xmake/core/ui/panel.lua | |
| parent | 62194c3e5dff8141813f9f63993516de98dd367f (diff) | |
rename dlist to list
Diffstat (limited to 'xmake/core/ui/panel.lua')
| -rw-r--r-- | xmake/core/ui/panel.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/core/ui/panel.lua b/xmake/core/ui/panel.lua index 7baef5c3a..244aae073 100644 --- a/xmake/core/ui/panel.lua +++ b/xmake/core/ui/panel.lua @@ -26,7 +26,7 @@ local event = require("ui/event") local point = require("ui/point") local curses = require("ui/curses") local action = require("ui/action") -local dlist = require("base/dlist") +local list = require("base/list") -- define module local panel = panel or view() @@ -44,7 +44,7 @@ function panel:init(name, bounds) self:option_set("selectable", true) -- init child views - self._VIEWS = dlist.new() + self._VIEWS = list.new() -- init views cache self._VIEWS_CACHE = {} |
