diff options
Diffstat (limited to 'core/ext/pm/modules_browser.lua')
-rw-r--r-- | core/ext/pm/modules_browser.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/ext/pm/modules_browser.lua b/core/ext/pm/modules_browser.lua index 9c0c8992..0456feaf 100644 --- a/core/ext/pm/modules_browser.lua +++ b/core/ext/pm/modules_browser.lua @@ -32,11 +32,11 @@ function get_contents_for(full_path) local name = entry:sub(1, -2) dir[name] = { parent = true, - display_text = name, + text = name, pixbuf = 'gtk-directory' } else - dir[entry] = { display_text = entry } + dir[entry] = { text = entry } end end else @@ -50,7 +50,7 @@ function get_contents_for(full_path) for name in out:gmatch('[^\n]+') do dir[name] = { parent = true, - display_text = name, + text = name, pixbuf = 'gtk-directory' } end @@ -58,7 +58,7 @@ function get_contents_for(full_path) out = p:read('*all') p:close() for entry in out:gmatch('[^\n]+') do - dir[entry] = { display_text = entry } + dir[entry] = { text = entry } end end return dir |