Skip to content

Commit

Permalink
Android: Fix displaying checkbox settings with no description
Browse files Browse the repository at this point in the history
  • Loading branch information
JosJuice committed Nov 24, 2019
1 parent 4305a9a commit 8339793
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ public void bind(SettingsItem item)
{
mTextSettingDescription.setText(item.getDescriptionId());
}
else
{
mTextSettingDescription.setText("");
}

mCheckbox.setChecked(mItem.isChecked());
}
Expand Down

0 comments on commit 8339793

Please sign in to comment.