From 7d431ef9c41f66e885dbace27e0843395940f1bd Mon Sep 17 00:00:00 2001 From: copycat-killer Date: Sun, 4 Dec 2016 13:27:52 +0100 Subject: [PATCH] calendar: fixed typos --- widgets/calendar.lua | 6 +++--- widgets/pulsebar.lua | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) 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 }) -- 2.39.2