-
-
Notifications
You must be signed in to change notification settings - Fork 34
Bug fixes and performance improvements #169
Conversation
# Conflicts: # app/src/main/java/com/bnyro/recorder/ui/components/PlayerView.kt
Only some minor suggestions, looks great in general! Thanks! <3 |
Thank you! <3 |
} | ||
fileRepository.deleteSelectedFiles(selectedFiles.map { it.recordingFile }) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Found an issue in my code.
I forgot to clear the selectedFiles list after deleting the selected files.
Steps to reproduce bug
- Select a few Items and delete them
- After the deletion is complete, click the delete all button
- Nothing happens
Delete all button only works when there are no items selected (when the selectedFiles is empty).
But in here since I forgot to clear the list, the delete all button does not work.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed in ecf10af
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks for spotting <3
This PR contains some Bug fixes and performance improvements related to the Recording Items Screen
Bug Fixes
Performance Improvements
Other Changes
Footnotes
This bug exists in the latest release. Occurs when there are more than 5(approx.) recording items. ↩
This bug exists in the latest release. Sorting the items by size doesn't seem do anything. ↩
Fixed the UI freezing when deleting files ↩