Merge pull request #3997 from osmandapp/mapillary_filters
Add small fixes
This commit is contained in:
commit
18ab7e9f6d
3 changed files with 4 additions and 2 deletions
|
@ -384,7 +384,7 @@
|
||||||
android:background="?attr/selectableItemBackground"
|
android:background="?attr/selectableItemBackground"
|
||||||
android:gravity="start|center_vertical"
|
android:gravity="start|center_vertical"
|
||||||
android:minWidth="0dp"
|
android:minWidth="0dp"
|
||||||
android:text="@string/shared_string_clear"
|
android:text="@string/shared_string_reset"
|
||||||
android:textAlignment="textStart"
|
android:textAlignment="textStart"
|
||||||
android:textColor="?attr/color_dialog_buttons" />
|
android:textColor="?attr/color_dialog_buttons" />
|
||||||
|
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
3. All your modified/created strings are in the top of the file (to make easier find what\'s translated).
|
3. All your modified/created strings are in the top of the file (to make easier find what\'s translated).
|
||||||
PLEASE: Have a look at http://code.google.com/p/osmand/wiki/UIConsistency, it may really improve your and our work :-) Thx - Hardy
|
PLEASE: Have a look at http://code.google.com/p/osmand/wiki/UIConsistency, it may really improve your and our work :-) Thx - Hardy
|
||||||
-->
|
-->
|
||||||
|
<string name="shared_string_reset">Reset</string>
|
||||||
<string name="shared_string_reload">Reload</string>
|
<string name="shared_string_reload">Reload</string>
|
||||||
<string name="mapillary_menu_descr_tile_cache">Reload tiles to see up to date data.</string>
|
<string name="mapillary_menu_descr_tile_cache">Reload tiles to see up to date data.</string>
|
||||||
<string name="mapillary_menu_title_tile_cache">Tile cache</string>
|
<string name="mapillary_menu_title_tile_cache">Tile cache</string>
|
||||||
|
|
|
@ -258,6 +258,7 @@ public class MapillaryFiltersFragment extends BaseOsmAndFragment {
|
||||||
|
|
||||||
changeButtonState(apply, .5f, false);
|
changeButtonState(apply, .5f, false);
|
||||||
plugin.updateLayers(mapActivity.getMapView(), mapActivity);
|
plugin.updateLayers(mapActivity.getMapView(), mapActivity);
|
||||||
|
hideKeyboard();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -276,8 +277,8 @@ public class MapillaryFiltersFragment extends BaseOsmAndFragment {
|
||||||
settings.MAPILLARY_FILTER_FROM_DATE.set(0L);
|
settings.MAPILLARY_FILTER_FROM_DATE.set(0L);
|
||||||
settings.MAPILLARY_FILTER_TO_DATE.set(0L);
|
settings.MAPILLARY_FILTER_TO_DATE.set(0L);
|
||||||
|
|
||||||
changeButtonState(apply, .5f, false);
|
|
||||||
plugin.updateLayers(mapActivity.getMapView(), mapActivity);
|
plugin.updateLayers(mapActivity.getMapView(), mapActivity);
|
||||||
|
hideKeyboard();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue