We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0314da commit 3f2161fCopy full SHA for 3f2161f
app/src/main/java/it/niedermann/owncloud/notes/main/MainActivity.java
@@ -622,6 +622,9 @@ public boolean onSupportNavigateUp() {
622
* Updates sorting method icon.
623
*/
624
private void updateSortMethodIcon(CategorySortingMethod method) {
625
+ if (method == null)
626
+ method = CategorySortingMethod.SORT_MODIFIED_DESC;
627
+
628
switch (method){
629
case SORT_MODIFIED_DESC :
630
activityBinding.sortingMethod.setImageResource(R.drawable.modification_desc);
0 commit comments