fix: change default name to ReVanced too

This commit is contained in:
drobotk 2026-03-15 20:55:57 +01:00
parent ff71535be7
commit fda0c754f1
No known key found for this signature in database
GPG key ID: 4B532DAB8340742C
2 changed files with 2 additions and 2 deletions

View file

@ -146,7 +146,7 @@ public class CustomBrandingPatch {
public static int getDefaultAppNameIndex() {
return userProvidedCustomName()
? numberOfPresetAppNames()
: 1;
: 2;
}
public static BrandingTheme getDefaultIconStyle() {

View file

@ -344,7 +344,7 @@ internal fun baseCustomBrandingPatch(
)
}
val enabledNameIndex = if (useCustomName) numberOfPresetAppNames else 1 // 1 indexing.
val enabledNameIndex = if (useCustomName) numberOfPresetAppNames else 2 // 1 indexing.
val enabledIconIndex = if (useCustomIcon) iconStyleNames.size - 1 else 0 // 0 indexing.
for (appNameIndex in 1..numberOfPresetAppNames) {