Merge pull request #1420 from vector-im/feature/fix_theme_switch
Fix: Switch theme is not fully taken into account without restarting the app
This commit is contained in:
commit
4a7bba047b
|
@ -8,7 +8,7 @@ Improvements 🙌:
|
||||||
-
|
-
|
||||||
|
|
||||||
Bugfix 🐛:
|
Bugfix 🐛:
|
||||||
-
|
- Switch theme is not fully taken into account without restarting the app
|
||||||
|
|
||||||
Translations 🗣:
|
Translations 🗣:
|
||||||
-
|
-
|
||||||
|
|
|
@ -54,7 +54,7 @@ class VectorSettingsPreferencesFragment @Inject constructor(
|
||||||
findPreference<VectorListPreference>(ThemeUtils.APPLICATION_THEME_KEY)!!
|
findPreference<VectorListPreference>(ThemeUtils.APPLICATION_THEME_KEY)!!
|
||||||
.onPreferenceChangeListener = Preference.OnPreferenceChangeListener { _, newValue ->
|
.onPreferenceChangeListener = Preference.OnPreferenceChangeListener { _, newValue ->
|
||||||
if (newValue is String) {
|
if (newValue is String) {
|
||||||
ThemeUtils.setApplicationTheme(requireContext(), newValue)
|
ThemeUtils.setApplicationTheme(requireContext().applicationContext, newValue)
|
||||||
// Restart the Activity
|
// Restart the Activity
|
||||||
activity?.restart()
|
activity?.restart()
|
||||||
true
|
true
|
||||||
|
|
Loading…
Reference in New Issue