Skip to content

Commit

Permalink
Fix UI glitch - folder type explanation not updating (fixes #53) (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
Catfriend1 authored Sep 15, 2018
1 parent 23c9663 commit 6e3899f
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -580,6 +580,7 @@ private void checkWriteAndUpdateUI() {
* or enabled root mode thus having write access.
*/
mFolder.type = Constants.FOLDER_TYPE_SEND_RECEIVE;
updateFolderTypeDescription();
} else {
mEditIgnoreListTitle.setEnabled(true);
mEditIgnoreListContent.setEnabled(true);
Expand All @@ -591,6 +592,7 @@ private void checkWriteAndUpdateUI() {
mEditIgnoreListTitle.setEnabled(false);
mEditIgnoreListContent.setEnabled(false);
mFolder.type = Constants.FOLDER_TYPE_SEND_ONLY;
updateFolderTypeDescription();
}
}

Expand Down

0 comments on commit 6e3899f

Please sign in to comment.