mirror of
https://git.sr.ht/~emersion/gamja
synced 2025-04-23 20:43:27 -04:00
Fix inverted channel list sorting
This commit is contained in:
parent
0157dd4cc6
commit
b37dfb77fe
1 changed files with 2 additions and 2 deletions
|
@ -72,10 +72,10 @@ function compareBuffers(a, b) {
|
|||
return 1;
|
||||
}
|
||||
|
||||
if (a.name > b.name) {
|
||||
if (a.name < b.name) {
|
||||
return -1;
|
||||
}
|
||||
if (a.name < b.name) {
|
||||
if (a.name > b.name) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue