awful.tag: Use sane tag index values (FS#1125)
commit2b0398c59bfb037582ce994c63b40ab6aee59bc0
authorUli Schlachter <psychon@znc.in>
Sat, 16 Mar 2013 15:51:55 +0000 (16 16:51 +0100)
committerUli Schlachter <psychon@znc.in>
Sat, 16 Mar 2013 15:51:55 +0000 (16 16:51 +0100)
treed75e3d08c3b472ba9082ad8e626d91decd98250b
parent9d5e2a981a8e3c95c99a7af23323dfdd6bf7226f
awful.tag: Use sane tag index values (FS#1125)

Since commit d8a93dafa316d, tags have an "index" property which decides about
the order in which they are displayed in the taglist. If a tag doesn't have this
property set, the next call to awful.tag.gettags() will fix this and "invent" an
index for this new tag.

However, if multiple tags didn't have an "index" property, gettags() would
assign all of them the same index. The following call to table.sort() would then
do random magic to these tags (remember: table.sort() is not a stable sorting
algorithm, so it is allowed to randomly swap around entries which have the same
sorting key).

Fix this by making sure that the new "index" properties are different from each
other.

Signed-off-by: Uli Schlachter <psychon@znc.in>
lib/awful/tag.lua.in