Skip to content

Commit

Permalink
Merge pull request dolphin-emu#8494 from JosJuice/android-checkbox-no…
Browse files Browse the repository at this point in the history
…-description

Android: Fix displaying checkbox settings with no description
  • Loading branch information
Helios747 authored Nov 27, 2019
2 parents e33acc0 + 8339793 commit 8d814ba
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 8d814ba

Please sign in to comment.