daniel-stoneuk / material-about-library

Makes it easy to create beautiful about screens for your apps
Apache License 2.0
1.12k stars 140 forks source link

Title description are not shown #70

Closed kamranr123 closed 7 years ago

kamranr123 commented 7 years ago

in MaterialAboutTitleItem.java there is a bug.

`CharSequence desc = item.getDesc(); int descRes = item.getDescRes();

    holder.desc.setVisibility(View.VISIBLE);
    if (text != null) {
        holder.desc.setText(desc);
    } else if (descRes != 0) {
        holder.desc.setText(descRes);
    } else {
        holder.desc.setVisibility(GONE);
    }`

if (text != null) { should be if (desc != null) {