mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 03:54:57 +00:00
Merge pull request #8494 from JosJuice/android-checkbox-no-description
Android: Fix displaying checkbox settings with no description
This commit is contained in:
commit
8d814baf79
1 changed files with 4 additions and 0 deletions
|
@ -42,6 +42,10 @@ public final class CheckBoxSettingViewHolder extends SettingViewHolder
|
|||
{
|
||||
mTextSettingDescription.setText(item.getDescriptionId());
|
||||
}
|
||||
else
|
||||
{
|
||||
mTextSettingDescription.setText("");
|
||||
}
|
||||
|
||||
mCheckbox.setChecked(mItem.isChecked());
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue