Skip to content

Commit

Permalink
fix(Profile): remove note text before hiding NoteTextField
Browse files Browse the repository at this point in the history
Fixes an issue, where if the NoteTextField was focussed and the note was
hidden, the note would saved and reshown once the NoteTextField was
hidden.
  • Loading branch information
FineFindus committed Aug 12, 2024
1 parent 78ec24f commit 420233d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -454,8 +454,8 @@ private void showPrivateNote(){
}

private void hidePrivateNote(){
noteWrap.setVisibility(View.GONE);
noteEdit.setText(null);
noteWrap.setVisibility(View.GONE);
}

private void savePrivateNote(String note){
Expand Down

0 comments on commit 420233d

Please sign in to comment.