SUW: use GLIF v3 light -theme

Change-Id: I3684279ad87c82b85c93267e959e9faa2dabfdc3
This commit is contained in:
Timi Rautamäki
2021-08-21 16:20:08 +00:00
parent 885e3b363a
commit ab4d6d383f
2 changed files with 2 additions and 2 deletions

View File

@@ -79,7 +79,7 @@ public class BiometricActivity extends SubBaseActivity {
private void launchBiometricSetup() { private void launchBiometricSetup() {
Intent intent = new Intent(ACTION_SETUP_BIOMETRIC); Intent intent = new Intent(ACTION_SETUP_BIOMETRIC);
intent.putExtra(WizardManagerHelper.EXTRA_THEME, ThemeHelper.THEME_MATERIAL_LIGHT); intent.putExtra(WizardManagerHelper.EXTRA_THEME, ThemeHelper.THEME_GLIF_V3_LIGHT);
intent.putExtra(EXTRA_TITLE, intent.putExtra(EXTRA_TITLE,
getString(getTitleResId())); getString(getTitleResId()));
intent.putExtra(EXTRA_DETAILS, intent.putExtra(EXTRA_DETAILS,

View File

@@ -87,7 +87,7 @@ public class WizardManager extends Activity {
private void addExtras(Intent intent) { private void addExtras(Intent intent) {
intent.putExtra(WizardManagerHelper.EXTRA_IS_FIRST_RUN, true); intent.putExtra(WizardManagerHelper.EXTRA_IS_FIRST_RUN, true);
intent.putExtra(WizardManagerHelper.EXTRA_THEME, ThemeHelper.THEME_MATERIAL_LIGHT); intent.putExtra(WizardManagerHelper.EXTRA_THEME, ThemeHelper.THEME_GLIF_V3_LIGHT);
} }
private void doAction(String scriptUri, WizardAction action, Intent extras) { private void doAction(String scriptUri, WizardAction action, Intent extras) {