Merge pull request #2833 from DorianGray/patch-1
awful.tooltip:show() - swap timer.started and timer_function call
This commit is contained in:
commit
88e51faa87
|
@ -172,8 +172,8 @@ local function show(self)
|
|||
if self._private.visible then return end
|
||||
if self.timer then
|
||||
if not self.timer.started then
|
||||
self:timer_function()
|
||||
self.timer:start()
|
||||
self:timer_function()
|
||||
end
|
||||
end
|
||||
set_geometry(self)
|
||||
|
|
Loading…
Reference in New Issue