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

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

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

Loading…
Cancel
Save