[kcm/landingpage] Remove return true on sort lambda
This was making std::sort
to be stalled in an infinite loop (at least for me)
It was a debug left-over? I think this can mess-up with the std::sort
algorithm, since we're telling that a > b
and b > a
.
Since noone else seems to have experienced the bug might it have to do with the actual stdlib
implementation or the compiler?