Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Magidovich <mgsergio@mapswithme.com>2016-07-01 16:05:13 +0300
committerSergey Magidovich <mgsergio@mapswithme.com>2016-07-01 16:05:13 +0300
commit34a15422377ad46a98923bf701f1cdf796c34651 (patch)
tree4415b85dd60bd38e421afa3fd50e05b35f7bac81 /android
parent1d877115c12311ccc081a88ae9979e12257d3e47 (diff)
Fix scrolling.
Diffstat (limited to 'android')
-rw-r--r--android/src/com/mapswithme/maps/editor/EditorFragment.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/android/src/com/mapswithme/maps/editor/EditorFragment.java b/android/src/com/mapswithme/maps/editor/EditorFragment.java
index 7791b4a7f4..a1723e5cc0 100644
--- a/android/src/com/mapswithme/maps/editor/EditorFragment.java
+++ b/android/src/com/mapswithme/maps/editor/EditorFragment.java
@@ -343,6 +343,7 @@ public class EditorFragment extends BaseMwmFragment implements View.OnClickListe
private void initLocalizedNameView(final View view)
{
mLocalizedNames = (RecyclerView) view.findViewById(R.id.recycler);
+ mLocalizedNames.setNestedScrollingEnabled(false);
mLocalizedNames.setLayoutManager(new LinearLayoutManager(getActivity()));
mLocalizedNamesAdapter = new MultilanguageAdapter(mParent);
mLocalizedNames.setAdapter(mLocalizedNamesAdapter);