From e2d6dc4a91299c92ccca693ad2b4dba59b67eb3e Mon Sep 17 00:00:00 2001 From: Ilya Zverev Date: Fri, 30 Mar 2018 15:09:36 +0300 Subject: [PATCH] [android] Remove extra html processing for the second welcome subtitle --- android/src/com/mapswithme/maps/news/WelcomeDialogFragment.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/src/com/mapswithme/maps/news/WelcomeDialogFragment.java b/android/src/com/mapswithme/maps/news/WelcomeDialogFragment.java index 8eb73fced7..ba930082df 100644 --- a/android/src/com/mapswithme/maps/news/WelcomeDialogFragment.java +++ b/android/src/com/mapswithme/maps/news/WelcomeDialogFragment.java @@ -116,7 +116,7 @@ public class WelcomeDialogFragment extends BaseMwmDialogFragment implements View subtitle.setText(R.string.onboarding_welcome_first_subtitle); TextView terms = (TextView) content.findViewById(R.id.tv__subtitle2); UiUtils.show(terms); - terms.setText(Html.fromHtml(getString(R.string.onboarding_welcome_second_subtitle))); + terms.setText(R.string.onboarding_welcome_second_subtitle); terms.setMovementMethod(LinkMovementMethod.getInstance()); return res;