test old descr as title in Configure screen submenus
This commit is contained in:
parent
2b036eacf6
commit
51b984d318
1 changed files with 4 additions and 0 deletions
|
@ -347,6 +347,8 @@ public class MapInfoLayer extends OsmandMapLayer {
|
|||
final OsmandApplication app = view.getApplication();
|
||||
for (final RenderingRuleProperty p : renderer.PROPS.getCustomRules()) {
|
||||
String propertyName = SettingsActivity.getStringPropertyName(view.getContext(), p.getAttrName(), p.getName());
|
||||
//test old descr as title
|
||||
String propertyDescr = SettingsActivity.getStringPropertyDescription(p.getAttrName(), p.getName());
|
||||
if(p.isBoolean()) {
|
||||
final CommonPreference<Boolean> pref = view.getApplication().getSettings().getCustomRenderBooleanProperty(p.getAttrName());
|
||||
int icon = 0;
|
||||
|
@ -378,6 +380,8 @@ public class MapInfoLayer extends OsmandMapLayer {
|
|||
@Override
|
||||
public void run() {
|
||||
Builder b = new AlertDialog.Builder(view.getContext());
|
||||
//test old descr as title
|
||||
b.setTitle(propertyDescr);
|
||||
int i = Arrays.asList(p.getPossibleValues()).indexOf(pref.get());
|
||||
b.setSingleChoiceItems(p.getPossibleValues(), i, new OnClickListener() {
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue