Fix typo
This commit is contained in:
parent
f2f2d57a61
commit
0942b612ab
1 changed files with 3 additions and 3 deletions
|
@ -63,9 +63,9 @@ public class AddNewTrackFolderBottomSheet extends MenuBottomSheetDialogFragment
|
|||
ColorStateList colorStateList = ColorStateList.valueOf(ContextCompat
|
||||
.getColor(app, nightMode ? R.color.text_color_secondary_dark : R.color.text_color_secondary_light));
|
||||
nameTextBox.setDefaultHintTextColor(colorStateList);
|
||||
TextInputEditText nameText = view.findViewById(R.id.name_edit_text);
|
||||
nameText.setText(folderName);
|
||||
nameText.addTextChangedListener(new TextWatcher() {
|
||||
editText = view.findViewById(R.id.name_edit_text);
|
||||
editText.setText(folderName);
|
||||
editText.addTextChangedListener(new TextWatcher() {
|
||||
@Override
|
||||
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue