https://bugs.kde.org/show_bug.cgi?id=392357
--- Comment #2 from Cyp <cyp...@gmail.com> --- Looking at the source for anything obvious, I suspect https://github.com/KDE/akonadi/blob/master/src/core/models/entityorderproxymodel.cpp#L110 should have something like this added: const int rightPosition = list.indexOf(rightValue); + if ((leftPosition < 0) != (rightPosition < 0)) { + return (leftPosition < 0) < (rightPosition < 0); + } + if (leftPosition < 0 || rightPosition < 0) { Otherwise the sort comparison function is inconsistent if at least on item has position < 0 and at least two items don't (possibly leading to A < B, B < C and C < A). Although I don't really think it's very likely to fix this particular issue (unless the alarms are sorted by some key which is partially in a list), and not sure how to test. -- You are receiving this mail because: You are watching all bug changes.