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

Commit 4187a64f authored by Evan Laird's avatar Evan Laird Committed by Android (Google) Code Review
Browse files

Merge "[Statusbar] Hide operator name by default; fix paddings" into main

parents 07c33180 9fa112fb
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -174,7 +174,7 @@
    <dimen name="status_bar_clock_size">14sp</dimen>

    <!-- The starting padding for the clock in the status bar. -->
    <dimen name="status_bar_clock_starting_padding">7dp</dimen>
    <dimen name="status_bar_clock_starting_padding">4dp</dimen>

    <!-- The end padding for the clock in the status bar. -->
    <dimen name="status_bar_clock_end_padding">0dp</dimen>
@@ -395,7 +395,7 @@
    <dimen name="status_bar_icon_horizontal_margin">0sp</dimen>

    <!-- the padding on the start of the statusbar -->
    <dimen name="status_bar_padding_start">8dp</dimen>
    <dimen name="status_bar_padding_start">4dp</dimen>

    <!-- the padding on the end of the statusbar -->
    <dimen name="status_bar_padding_end">4dp</dimen>
+3 −1
Original line number Diff line number Diff line
@@ -91,7 +91,9 @@ public interface StatusBarFragmentModule {
    @StatusBarFragmentScope
    @Named(OPERATOR_NAME_VIEW)
    static View provideOperatorNameView(@RootView PhoneStatusBarView view) {
        return ((ViewStub) view.findViewById(R.id.operator_name_stub)).inflate();
        View operatorName = ((ViewStub) view.findViewById(R.id.operator_name_stub)).inflate();
        operatorName.setVisibility(View.GONE);
        return operatorName;
    }

    /** */