Restores case insensitive sorting of applications by name
I broke this in 0.34-test
This commit is contained in:
parent
ff8dde9cc7
commit
161cc23f8f
@ -181,7 +181,7 @@ public class DB {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int compareTo(App arg0) {
|
public int compareTo(App arg0) {
|
||||||
return name.compareTo(arg0.name);
|
return name.compareToIgnoreCase(arg0.name);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user