Fixed a display bug where last word in notes would sometimes be underlined

pull/14/head
Sam Bosley 13 years ago
parent 19835e5045
commit ca62ccb06f

@ -33,9 +33,9 @@ public class EditNotesControlSet extends PopupControlSet {
@Override @Override
protected void refreshDisplayView() { protected void refreshDisplayView() {
CharSequence textToUse; String textToUse;
if (initialized) if (initialized)
textToUse = editText.getText(); textToUse = editText.getText().toString();
else else
textToUse = model.getValue(Task.NOTES); textToUse = model.getValue(Task.NOTES);

Loading…
Cancel
Save