We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e10cfce commit 1fa39a1Copy full SHA for 1fa39a1
commons/src/main/kotlin/org/fossify/commons/activities/CustomizationActivity.kt
@@ -691,16 +691,16 @@ class CustomizationActivity : BaseSimpleActivity() {
691
692
canAccessGlobalConfig() -> {
693
binding.applyToAllSwitch.isChecked = true
694
+ updateColorTheme(getCurrentThemeId())
695
+ saveChanges(false)
696
ConfirmationDialog(
697
activity = this,
698
message = "",
699
messageId = R.string.global_theme_success,
700
positive = R.string.ok,
- negative = 0
- ) {
701
- updateColorTheme(getCurrentThemeId())
702
- saveChanges(false)
703
- }
+ negative = 0,
+ callback = {}
+ )
704
}
705
706
else -> {
0 commit comments