Fix the mkMap function.

This commit is contained in:
Username404-59 2021-04-08 20:58:03 +02:00
parent 5706e9cb16
commit dde0a4f86a
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ object AddKeyMaps {
private fun mkMap(translationSuffix: String, key: Int, category: String = "keycategory"): KeyMapping {
return KeyMapping(
"$prefix.$translationSuffix", InputConstants.Type.KEYSYM,
key, category
key, "$prefix.$category"
)
}
fun getList(): List<KeyMapping> {