fixing small typo in fs widget which lead to nil reference

This commit is contained in:
aajjbb 2015-07-11 14:19:12 -03:00 committed by copycat-killer
parent fb358dcd04
commit 72556c9cd1

View file

@ -106,8 +106,8 @@ local function worker(args)
end end
end end
widget:connect_signal('mouse::enter', function () fs:show(0) end) fs.widget:connect_signal('mouse::enter', function () fs:show(0) end)
widget:connect_signal('mouse::leave', function () fs:hide() end) fs.widget:connect_signal('mouse::leave', function () fs:hide() end)
helpers.newtimer(partition, timeout, update) helpers.newtimer(partition, timeout, update)