Show empty list message after removing recording(s)

This commit is contained in:
Sylvain Berfini 2019-04-08 16:59:04 +02:00
parent c7518c6fd2
commit cd06eb3746

View file

@ -125,6 +125,7 @@ public class RecordingsFragment extends Fragment
Collections.sort(mRecordings);
}
hideRecordingListAndDisplayMessageIfEmpty();
}
private void searchForRecordings() {
@ -244,5 +245,6 @@ public class RecordingsFragment extends Fragment
mRecordings.remove(record);
}
}
hideRecordingListAndDisplayMessageIfEmpty();
}
}