Skip to content

Commit

Permalink
fixed #434
Browse files Browse the repository at this point in the history
  • Loading branch information
Luka5W committed Jan 3, 2024
1 parent fd9c626 commit b5879b8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions calendar-widget/calendar.lua
Original file line number Diff line number Diff line change
Expand Up @@ -228,11 +228,13 @@ local function worker(user_args)
if popup.visible then
-- to faster render the calendar refresh it and just hide
cal:set_date(nil) -- the new date is not set without removing the old one
cal:set_date(os.date('*t'))
popup:set_widget(nil) -- just in case
popup:set_widget(cal)
popup.visible = not popup.visible
popup.visible = false
else
-- apply it when the calendar is opened! - probably slower but fixes the issue that the
-- day is not updated when *opening* the popup (only when closing)
cal:set_date(os.date('*t'))
popup:set_widget(cal)
if placement == 'top' then
awful.placement.top(popup, { margins = { top = 30 }, parent = awful.screen.focused() })
elseif placement == 'top_right' then
Expand Down

0 comments on commit b5879b8

Please sign in to comment.