Merge pull request #2991 from psychon/cleanup_tag_history
Cleanup tag history on screen removal
This commit is contained in:
commit
fd237b9cd8
|
@ -1811,6 +1811,7 @@ capi.screen.connect_signal("removed", function(s)
|
||||||
t._private.awful_tag_properties.screen = nil
|
t._private.awful_tag_properties.screen = nil
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
data.history[s] = nil
|
||||||
end)
|
end)
|
||||||
|
|
||||||
function tag.mt:__call(...)
|
function tag.mt:__call(...)
|
||||||
|
|
|
@ -81,6 +81,16 @@ collectable(awful.widget.tasklist{screen=1, filter=awful.widget.tasklist.filter.
|
||||||
prepare_for_collect = run_delayed_calls
|
prepare_for_collect = run_delayed_calls
|
||||||
collectable(create_wibox())
|
collectable(create_wibox())
|
||||||
|
|
||||||
|
-- Test that screens can be collected
|
||||||
|
local function create_and_remove_screen()
|
||||||
|
local s = screen.fake_add(-10, -10, 10, 10)
|
||||||
|
awful.tag.viewnext(s)
|
||||||
|
s:fake_remove()
|
||||||
|
return s
|
||||||
|
end
|
||||||
|
prepare_for_collect = run_delayed_calls
|
||||||
|
collectable(create_and_remove_screen())
|
||||||
|
|
||||||
runner.run_steps({ function() return true end })
|
runner.run_steps({ function() return true end })
|
||||||
|
|
||||||
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|
||||||
|
|
Loading…
Reference in New Issue