util.quake: check if client exists when moving it to another tag

This commit is contained in:
Kyra Zimmer 2018-02-22 12:14:00 +01:00 committed by Luca CPZ
parent 63c9c7616a
commit e81f46950b
1 changed files with 4 additions and 1 deletions

View File

@ -158,7 +158,10 @@ function quake:toggle()
if self.followtag then self.screen = awful.screen.focused() end
local current_tag = self.screen.selected_tag
if current_tag and self.last_tag ~= current_tag and self.visible then
self:display():move_to_tag(current_tag)
local c=self:display()
if c then
c:move_to_tag(current_tag)
end
else
self.visible = not self.visible
self:display()