decrease font size of osm notice in production builds

This commit is contained in:
Starfish 2024-04-21 14:41:54 +02:00
parent 089a64f7db
commit aa22770c65
1 changed files with 3 additions and 0 deletions

View File

@ -386,6 +386,9 @@ public class WeatherWarningActivity extends Activity {
newTextView.setText(spannableString);
newTextView.setAutoLinkMask(1);
newTextView.setTextSize(12);
if (!WeatherSettings.appReleaseIsUserdebug()){
newTextView.setTextSize(10);
}
newTextView.setVisibility(View.VISIBLE);
newTextView.setTextColor(ThemePicker.getColor(context,ThemePicker.ThemeColor.CYAN));
newTextView.setBackgroundColor(ThemePicker.getColor(context,ThemePicker.ThemeColor.PRIMARYLIGHT));