From 77449ac1652f151df07dfdcbf6709f8f99cc8c2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Mon, 15 Jul 2013 23:02:53 +0200 Subject: [PATCH] Revert "Disable scrollbars altogether on the three main tabs" This reverts commit c78ff5df303689341ea040847d5d2c53b56c9533. --- src/org/fdroid/fdroid/views/fragments/AppListFragment.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/fdroid/fdroid/views/fragments/AppListFragment.java b/src/org/fdroid/fdroid/views/fragments/AppListFragment.java index 6e73824a9..249b2f438 100644 --- a/src/org/fdroid/fdroid/views/fragments/AppListFragment.java +++ b/src/org/fdroid/fdroid/views/fragments/AppListFragment.java @@ -49,7 +49,7 @@ abstract class AppListFragment extends Fragment implements AdapterView.OnItemCli protected ListView createAppListView() { ListView list = new ListView(getActivity()); - list.setVerticalScrollBarEnabled(false); + list.setFastScrollEnabled(true); list.setOnItemClickListener(this); list.setAdapter(getAppListAdapter()); return list;