Remove the alphabetical ordering because it caused issues with kotlin-reflect
This commit is contained in:
parent
6848b26797
commit
b958490580
|
@ -33,9 +33,7 @@ sealed class ButtonImpl: ColoredElement(0.0, 0.0, 73, 8, opacity = 0.60F) {
|
||||||
}
|
}
|
||||||
}.entries.forEach { entry ->
|
}.entries.forEach { entry ->
|
||||||
with(entry) {
|
with(entry) {
|
||||||
entry.value.sortedBy {
|
entry.value.forEach {
|
||||||
it.title
|
|
||||||
}.forEach {
|
|
||||||
key?.buttons!!.add(it)
|
key?.buttons!!.add(it)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue