diff --git a/app/src/main/java/com/maxieds/chameleonminilivedebugger/LiveLoggerActivity.java b/app/src/main/java/com/maxieds/chameleonminilivedebugger/LiveLoggerActivity.java index 0bd7231..a649442 100644 --- a/app/src/main/java/com/maxieds/chameleonminilivedebugger/LiveLoggerActivity.java +++ b/app/src/main/java/com/maxieds/chameleonminilivedebugger/LiveLoggerActivity.java @@ -540,7 +540,7 @@ public void actionButtonAppSettings(View view) { for(int rb = 0; rb < themeRadioGroup.getChildCount(); rb++) { RadioButton curThemeBtn = (RadioButton) themeRadioGroup.getChildAt(rb); if(curThemeBtn.isEnabled() && curThemeBtn.getText().toString().equals("Theme: " + storedAppTheme)) { - curThemeBtn.setSelected(true); + curThemeBtn.setChecked(true); break; } }