Fix typo in awful.tag.swap

Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
Uli Schlachter 2016-02-07 14:42:54 +01:00
parent a4e598d444
commit ee530a65d6
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ function tag.swap(tag1, tag2)
local src2, src1 = tag.getscreen(tag2), tag.getscreen(tag1)
tag.setscreen(src1, tag2)
tag.move(idx1, tag2)
tag.setscreen(scr2, tag1)
tag.setscreen(src2, tag1)
tag.move(idx2, tag1)
end