mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 14:19:02 +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());
|
mTextSettingDescription.setText(item.getDescriptionId());
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
mTextSettingDescription.setText("");
|
||||||
|
}
|
||||||
|
|
||||||
mCheckbox.setChecked(mItem.isChecked());
|
mCheckbox.setChecked(mItem.isChecked());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue