mirror of
https://github.com/etesync/android
synced 2024-11-16 04:49:06 +00:00
Allow renaming collections.
I mistakingly disallowed it when I added the edit collection ability. There is no problem with changing the display name.
This commit is contained in:
parent
4c7ae90b36
commit
b9b930939f
@ -53,7 +53,6 @@ public class CreateAddressBookActivity extends AppCompatActivity {
|
||||
if (info != null) {
|
||||
final EditText edit = (EditText) findViewById(R.id.display_name);
|
||||
edit.setText(info.displayName);
|
||||
edit.setEnabled(false);
|
||||
|
||||
final EditText desc = (EditText) findViewById(R.id.description);
|
||||
desc.setText(info.description);
|
||||
|
@ -76,7 +76,6 @@ public class CreateCalendarActivity extends AppCompatActivity {
|
||||
if (info != null) {
|
||||
final EditText edit = (EditText) findViewById(R.id.display_name);
|
||||
edit.setText(info.displayName);
|
||||
edit.setEnabled(false);
|
||||
|
||||
final EditText desc = (EditText) findViewById(R.id.description);
|
||||
desc.setText(info.description);
|
||||
|
Loading…
Reference in New Issue
Block a user