Merge branch 'fix_tag_history_V2' of git://github.com/Elv13/awesome-1

This commit is contained in:
Uli Schlachter 2014-10-17 10:36:54 +02:00
commit f3874e2fc4

View file

@ -178,11 +178,13 @@ function tag.history.update(obj)
else
if data.history[s].current then
-- Check that the list is not identical
local identical = true
for idx, _tag in ipairs(data.history[s].current) do
if curtags[idx] ~= _tag then
identical = false
break
local identical = #data.history[s].current == #curtags
if identical then
for idx, _tag in ipairs(data.history[s].current) do
if curtags[idx] ~= _tag then
identical = false
break
end
end
end