Skip to content

Commit

Permalink
Minor fix:Calling SImpleArea.setLines() directly
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Pozhidaev committed Dec 11, 2015
1 parent 9ce872b commit 6087b87
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/org/luwrain/app/contacts/Base.java
Original file line number Diff line number Diff line change
Expand Up @@ -252,8 +252,7 @@ boolean fillNotesArea(EditArea area)
luwrain.message("Во время получения комментария произошла непредвиденная ошибка:" + e.getMessage());
return false;
}
area.getEditContent().setLines(value.split("\n", -1));
luwrain.onAreaNewContent(area);
area.setLines(value.split("\n", -1));
return true;
}

Expand Down

0 comments on commit 6087b87

Please sign in to comment.