mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 19:44:57 +00:00
Merge pull request #11525 from t895/runtime-switch-fix
Android: Fix settings being editable when marked otherwise
This commit is contained in:
commit
9eb56551af
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ public final class SwitchSettingViewHolder extends SettingViewHolder
|
|||
mBinding.textSettingDescription.setText(item.getDescription());
|
||||
|
||||
mBinding.settingSwitch.setChecked(mItem.isChecked(getAdapter().getSettings()));
|
||||
mBinding.settingSwitch.setEnabled(true);
|
||||
mBinding.settingSwitch.setEnabled(mItem.isEditable());
|
||||
|
||||
// Check for IPL to make sure user can skip.
|
||||
if (mItem.getSetting() == BooleanSetting.MAIN_SKIP_IPL)
|
||||
|
|
Loading…
Add table
Reference in a new issue