From: copycat-killer Date: Sun, 4 Dec 2016 12:27:52 +0000 (+0100) Subject: calendar: fixed typos X-Git-Url: https://git.madduck.net/etc/awesome.git/commitdiff_plain/7d431ef9c41f66e885dbace27e0843395940f1bd?ds=inline calendar: fixed typos --- diff --git a/widgets/calendar.lua b/widgets/calendar.lua index a38a142..1728dfc 100644 --- a/widgets/calendar.lua +++ b/widgets/calendar.lua @@ -116,8 +116,8 @@ function calendar.attach(widget, args) calendar.offset = 0 calendar.notify_icon = nil - widget:connect_signal("mouse::enter", function () calendar:show(0, 0, calendar.scr_pos) end) - widget:connect_signal("mouse::leave", function () calendar:hide() end) + widget:connect_signal("mouse::enter", function () calendar.show(0, 0, calendar.scr_pos) end) + widget:connect_signal("mouse::leave", function () calendar.hide() end) widget:buttons(awful.util.table.join(awful.button({ }, 1, function () calendar.show(0, -1, calendar.scr_pos) end), awful.button({ }, 3, function () @@ -125,7 +125,7 @@ function calendar.attach(widget, args) awful.button({ }, 4, function () calendar.show(0, -1, calendar.scr_pos) end), awful.button({ }, 5, function () - calendar:show(0, 1, calendar.scr_pos) end))) + calendar.show(0, 1, calendar.scr_pos) end))) end return setmetatable(calendar, { __call = function(_, ...) return create(...) end }) diff --git a/widgets/pulsebar.lua b/widgets/pulsebar.lua index 006515c..fc2951b 100644 --- a/widgets/pulsebar.lua +++ b/widgets/pulsebar.lua @@ -178,4 +178,4 @@ local function worker(args) return pulsebar end -return setmetatable(pulsebar, { __call = function(_, ...) return worker(...) end }) +eturn setmetatable(pulsebar, { __call = function(_, ...) return worker(...) end })