Skip to content

Commit

Permalink
Fix custom empty text
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubkinst committed Aug 9, 2015
1 parent 6b1808a commit fa1b1f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/src/main/java/cz/kinst/jakub/view/StatefulView.java
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ public void setEmptyText(@StringRes int resourceId) {


public void setEmptyText(CharSequence emptyText) {
if(mDefaultOfflineText != null)
mDefaultOfflineText.setText(emptyText);
if(mDefaultEmptyText != null)
mDefaultEmptyText.setText(emptyText);
}


Expand Down

0 comments on commit fa1b1f0

Please sign in to comment.