diff options
-rw-r--r-- | dalos-hexview.lua | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/dalos-hexview.lua b/dalos-hexview.lua index b085f12..f14e1e0 100644 --- a/dalos-hexview.lua +++ b/dalos-hexview.lua @@ -40,14 +40,18 @@ dalosp.hexview = { update_houtput = function (self, ind, cursor)
local h = self:get_linked_input(1)
+ local maxsixe = h:getsize()
if h and self.watchees[ind] then
+ if cursor < maxsize then
+ self:set_houtput(nil, ind)
+ end
local obj = {
h = h,
hvo = self,
ind = ind,
origin = cursor,
offset = 0,
- size = h:getsize() - cursor,
+ size = maxsize - cursor,
canread = function (self) return true end,
canwrite = function (self) return false end,
canseek = function (self) return true end,
|