correct settings bug
This commit is contained in:
parent
6618fe9438
commit
75bf853819
1 changed files with 3 additions and 6 deletions
|
@ -138,11 +138,10 @@ public class OsmandMonitoringPlugin extends OsmandPlugin implements MonitoringIn
|
|||
|
||||
cat = new PreferenceCategory(activity);
|
||||
cat.setTitle(R.string.monitor_preferences);
|
||||
|
||||
PreferenceScreen generalSection = ((PreferenceScreen) screen.findPreference(SettingsActivity.SCREEN_ID_GENERAL_SETTINGS));
|
||||
generalSection.addPreference(cat);
|
||||
|
||||
((PreferenceScreen) screen.findPreference(SettingsActivity.SCREEN_ID_GENERAL_SETTINGS)).addPreference(cat);
|
||||
cat.addPreference(activity.createEditTextPreference(settings.LIVE_MONITORING_URL, R.string.live_monitoring_url,
|
||||
R.string.live_monitoring_url_descr));
|
||||
R.string.live_monitoring_url_descr));
|
||||
|
||||
Preference pref = new Preference(activity);
|
||||
pref.setTitle(R.string.save_current_track);
|
||||
|
@ -160,8 +159,6 @@ public class OsmandMonitoringPlugin extends OsmandPlugin implements MonitoringIn
|
|||
}
|
||||
});
|
||||
cat.addPreference(pref);
|
||||
|
||||
|
||||
}
|
||||
|
||||
private void saveCurrentTracks(final SavingTrackHelper helper, final SettingsActivity activity) {
|
||||
|
|
Loading…
Reference in a new issue