[se] Fix bug 74759

This commit is contained in:
GoshaZotov
2025-05-29 00:42:17 +03:00
parent e96e8f83c0
commit 68a7454ddf

View File

@ -1910,10 +1910,10 @@
}
_ranges.sort(function sortArr(a, b) {
if (byCol) {
return a.c1 > b.c1 ? -1 : 1;
if (!byCol) {
return a.c1 > b.c1 ? 1 : -1;
} else {
return a.r1 > b.r1 ? -1 : 1;
return a.r1 > b.r1 ? 1 : -1;
}
});