Skip to content

Commit

Permalink
Update read text
Browse files Browse the repository at this point in the history
  • Loading branch information
billthefarmer committed Jul 26, 2017
1 parent 045ef3e commit e8f7c27
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/java/org/billthefarmer/editor/Editor.java
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,9 @@ protected void onProgressUpdate(Integer... progress)
@Override
protected void onPostExecute(String result)
{
textView.setText(result);
if (textView != null)
textView.setText(result);

dirty = false;
invalidateOptionsMenu();
}
Expand Down

0 comments on commit e8f7c27

Please sign in to comment.