diff options
author | Pixel <pixel@nobis-crew.org> | 2009-12-20 17:17:18 +0100 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2009-12-20 17:17:18 +0100 |
commit | 9e4d6af65641703b1451a31d973d7b6b5b23cc65 (patch) | |
tree | 58974ef93a8ab105feafdb8da14b156d9717ecd6 | |
parent | 054083c8bcc6fc4f9085023d5c55c4214d0faf6b (diff) |
Typo in the input object.
-rw-r--r-- | dalos-input.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dalos-input.lua b/dalos-input.lua index 1061619..7588046 100644 --- a/dalos-input.lua +++ b/dalos-input.lua @@ -12,11 +12,11 @@ dalosp.input = { if dlg.status ~= -1 then
local s, v = pcall(Input, dlg.value)
if s then
- obj:set_houtput(v)
+ self:set_houtput(v)
return
end
end
- obj:set_houtput(nil)
+ self:set_houtput(nil)
end,
create = function (d, tab, settings)
|