Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b343d8d6 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "Fix FC when drag delete call log to split screen" into android_ui.lnx.2.1-dev

parents 459b8c09 401ce196
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -246,7 +246,7 @@ public class MultiPickContactsActivity extends Activity implements ViewPager.OnP
            // occur crash.
            position = getRtlPosition(position);

            if (mAreTabsHiddenInViewPager) {
            if (mAreTabsHiddenInViewPager || mPickMode.isPickCall()) {
                if (mPickMode.isPickCall()) {
                    mDelCallLogFragment = new DelCallLogFragment();
                    mDelCallLogFragment.setCheckListListener(new CheckListListener());
@@ -295,8 +295,7 @@ public class MultiPickContactsActivity extends Activity implements ViewPager.OnP
        public Object instantiateItem(ViewGroup container, int position) {

            Fragment f = (Fragment) super.instantiateItem(container, position);

            if (mAreTabsHiddenInViewPager) {
            if (mAreTabsHiddenInViewPager || mPickMode.isPickCall()) {
                if (mPickMode.isPickCall()) {
                    if (mDelCallLogFragment == null) {
                        mDelCallLogFragment = (DelCallLogFragment) f;
+1 −2
Original line number Diff line number Diff line
@@ -423,8 +423,7 @@ public class ContactsFragment extends ListFragment {
                uri = Contacts.CONTENT_URI;
                break;
            default:
                throw new IllegalArgumentException("getUriToQuery: Incorrect mode: "
                        + mPickMode.getMode());
                uri = Contacts.CONTENT_URI;
        }
        return uri.buildUpon().appendQueryParameter(Contacts.EXTRA_ADDRESS_BOOK_INDEX, "true")
                .build();