Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4c0011e9 authored by Adam Powell's avatar Adam Powell Committed by Android Git Automerger
Browse files

am 824347dd: am d08f339b: am 749334bf: Merge "Fix ChooserTarget app scoring" into mnc-dr-dev

* commit '824347dd':
  Fix ChooserTarget app scoring
parents a7304cac 824347dd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -920,7 +920,7 @@ public class ChooserActivity extends ResolverActivity {
        @Override
        public int compare(ChooserTarget lhs, ChooserTarget rhs) {
            // Descending order
            return (int) Math.signum(lhs.getScore() - rhs.getScore());
            return (int) Math.signum(rhs.getScore() - lhs.getScore());
        }
    }