Skip to content
This repository has been archived by the owner on Sep 17, 2023. It is now read-only.

Commit

Permalink
Small bug in selected theme in the theme change dialog (IV) -> setSel…
Browse files Browse the repository at this point in the history
…ected -> setChecked
  • Loading branch information
maxieds committed Jun 29, 2019
1 parent d1bd1c8 commit 934c6e2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Expand Down

0 comments on commit 934c6e2

Please sign in to comment.