author | Lucas Rocha <lucasr@mozilla.com> |
Tue, 30 Jul 2013 19:10:28 +0100 | |
changeset 143485 | 623462249b2517e8fb2f4bf5a13e7378335435f6 |
parent 143484 | a0890fdc1346a5782bb11a9d832822022f0d4d57 |
child 143486 | 4e2ac48c10392f34f5f37a8b3fc1bc01efadad8a |
push id | 25130 |
push user | lrocha@mozilla.com |
push date | Wed, 21 Aug 2013 09:41:27 +0000 |
treeherder | mozilla-central@b2486721572e [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | sriram |
bugs | 899061 |
milestone | 25.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/mobile/android/base/home/BookmarksListView.java +++ b/mobile/android/base/home/BookmarksListView.java @@ -1,15 +1,16 @@ /* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*- * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ package org.mozilla.gecko.home; +import org.mozilla.gecko.R; import org.mozilla.gecko.db.BrowserContract.Bookmarks; import org.mozilla.gecko.db.BrowserDB.URLColumns; import org.mozilla.gecko.home.HomePager.OnUrlOpenListener; import android.content.Context; import android.database.Cursor; import android.util.AttributeSet; import android.view.MotionEvent; @@ -33,17 +34,17 @@ public class BookmarksListView extends H // The default touch slop. private int mTouchSlop; public BookmarksListView(Context context) { this(context, null); } public BookmarksListView(Context context, AttributeSet attrs) { - this(context, attrs, android.R.attr.listViewStyle); + this(context, attrs, R.attr.homeListViewStyle); } public BookmarksListView(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); // Scaled touch slop for this context. mTouchSlop = ViewConfiguration.get(context).getScaledTouchSlop(); }