mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-17 07:47:41 +01:00
Merge pull request #3819 from HoNamDuong/master
fix(awful.key.keygroups): can't use 0 . key
This commit is contained in:
commit
0e5fc4575a
1 changed files with 1 additions and 1 deletions
|
@ -397,7 +397,7 @@ key.keygroups = {
|
|||
-- Technically, this isn't very popular, but we have been doing this for 12
|
||||
-- years and nobody complained too loudly.
|
||||
for i = 1, 10 do
|
||||
table.insert(key.keygroups.numrow, {"#" .. i + 9, i == 10 and 0 or i})
|
||||
table.insert(key.keygroups.numrow, {"#" .. i + 9, i})
|
||||
end
|
||||
for i = 1, 35 do
|
||||
table.insert(key.keygroups.fkeys, {"F" .. i, "F" .. i})
|
||||
|
|
Loading…
Reference in a new issue