Merge pull request #2833 from DorianGray/patch-1

awful.tooltip:show() - swap timer.started and timer_function call
This commit is contained in:
mergify[bot] 2019-08-02 15:01:02 +00:00 committed by GitHub
commit 88e51faa87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -172,8 +172,8 @@ local function show(self)
if self._private.visible then return end if self._private.visible then return end
if self.timer then if self.timer then
if not self.timer.started then if not self.timer.started then
self:timer_function()
self.timer:start() self.timer:start()
self:timer_function()
end end
end end
set_geometry(self) set_geometry(self)