mirror of
https://codeberg.org/emersion/gamja
synced 2025-04-22 09:24:28 +02:00
Fix inverted channel list sorting
This commit is contained in:
parent
0157dd4cc6
commit
b37dfb77fe
@ -72,10 +72,10 @@ function compareBuffers(a, b) {
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (a.name > b.name) {
|
if (a.name < b.name) {
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
if (a.name < b.name) {
|
if (a.name > b.name) {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user