From be7281b34e9c2eff847e93b5b896e4147c702e6a Mon Sep 17 00:00:00 2001 From: Victor Shcherb Date: Tue, 7 Jan 2020 20:09:43 +0100 Subject: [PATCH] Fix #8129 --- OsmAnd/src/net/osmand/plus/dialogs/ConfigureMapMenu.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OsmAnd/src/net/osmand/plus/dialogs/ConfigureMapMenu.java b/OsmAnd/src/net/osmand/plus/dialogs/ConfigureMapMenu.java index 476d4c795b..d7ebf3f9ed 100644 --- a/OsmAnd/src/net/osmand/plus/dialogs/ConfigureMapMenu.java +++ b/OsmAnd/src/net/osmand/plus/dialogs/ConfigureMapMenu.java @@ -710,7 +710,7 @@ public class ConfigureMapMenu { AlertDialog.Builder b = new AlertDialog.Builder(new ContextThemeWrapper(view.getContext(), themeRes)); // test old descr as title b.setTitle(R.string.text_size); - final Float[] txtValues = new Float[]{0.75f, 1f, 1.25f, 1.5f, 2f, 3f}; + final Float[] txtValues = new Float[]{0.33f, 0.5f, 0.75f, 1f, 1.25f, 1.5f, 2f, 3f}; int selected = -1; final String[] txtNames = new String[txtValues.length]; for (int i = 0; i < txtNames.length; i++) {