diff options
author | Pavel Makhov <pavel.makhov@savoirfairelinux.com> | 2017-04-14 10:02:54 -0400 |
---|---|---|
committer | Pavel Makhov <pavel.makhov@savoirfairelinux.com> | 2017-04-14 10:02:54 -0400 |
commit | 4edc315841e0f5cafcac776b1e642bf99afe52b4 (patch) | |
tree | fb6fd08bfc1751f553e9c7a5671ce98891db31fe /battery-widget | |
parent | fc438f8419373209333ee9bdf86470c54d704dd2 (diff) |
Possible fix for memory leak issue #11
Diffstat (limited to 'battery-widget')
-rw-r--r-- | battery-widget/battery.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/battery-widget/battery.lua b/battery-widget/battery.lua index a0116eb..3823fba 100644 --- a/battery-widget/battery.lua +++ b/battery-widget/battery.lua @@ -49,12 +49,13 @@ watch( else batteryType = string.format(batteryType,'') end - battery_widget.image = path_to_icons .. batteryType .. ".svg" + widget.image = path_to_icons .. batteryType .. ".svg" -- Update popup text -- TODO: Filter long lines battery_popup.text = string.gsub(stdout, "\n$", "") - end + end, + battery_widget ) -- Alternative to tooltip - popup message shown by naughty library. You can compare both and choose the preferred one |