fix theme subtitle not updating

Signed-off-by: Harry Bond <me@hbond.xyz>
This commit is contained in:
Harry Bond 2025-03-04 18:47:25 +00:00
parent b65e4cfa30
commit 4da1ac38c4

View file

@ -400,6 +400,8 @@ public class SettingsPrefsFragment extends BaseXmlSettingsFragment implements La
pref.setSummary(pref.getEntry());
pref.setOnPreferenceChangeListener((preference, newValue) -> {
final String themeName = (String) newValue;
pref.setValue(themeName);
pref.setSummary(pref.getEntry());
if (!Config.setThemeSettings(requireContext(), themeName))
return true;