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

Commit 87258b1a authored by Adnan's avatar Adnan
Browse files

Dialer: Don't hide the fake actionbar containing call log.

  Call log should be accessible during a phone call, thus
  there's no need to tell the host interface to remove the
  container hosting the call log view.

Change-Id: Ie2968074f51788eae136dfc4862ff54a483da97f
parent 6fff83fe
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -1133,11 +1133,6 @@ public class DialtactsActivity extends TransactionSafeActivity implements View.O
        }
    }

    @Override
    public void setDialButtonContainerVisible(boolean visible) {
        mFakeActionBar.setVisibility(visible ? View.VISIBLE : View.GONE);
    }

    /**
     * @return the SIM name for the special subscription.
     */
+0 −3
Original line number Diff line number Diff line
@@ -125,7 +125,6 @@ public class DialpadFragment extends Fragment
     */
    public interface HostInterface {
        void setDialButtonEnabled(boolean enabled);
        void setDialButtonContainerVisible(boolean visible);
    }

    /**
@@ -1455,7 +1454,6 @@ public class DialpadFragment extends Fragment
                mDigits.setVisibility(View.GONE);
            }
            if (mDialpad != null) mDialpad.setVisibility(View.GONE);
            ((HostInterface) getActivity()).setDialButtonContainerVisible(false);

            mDialpadChooser.setVisibility(View.VISIBLE);

@@ -1473,7 +1471,6 @@ public class DialpadFragment extends Fragment
                mDigits.setVisibility(View.VISIBLE);
            }
            if (mDialpad != null) mDialpad.setVisibility(View.VISIBLE);
            ((HostInterface) getActivity()).setDialButtonContainerVisible(true);
            mDialpadChooser.setVisibility(View.GONE);
        }
    }