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

Commit 40a4b8df authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix "no permission usages" overlap."

parents 97202880 15ef10b7
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -27,10 +27,11 @@
            android:layout_width="match_parent"
            android:layout_height="match_parent">

            <FrameLayout
            <LinearLayout
                android:id="@+id/prefs_container"
                android:layout_width="match_parent"
                android:layout_height="match_parent">
                android:layout_height="match_parent"
                android:orientation="vertical">

                <TextView
                    android:id="@+id/no_permissions"
@@ -40,7 +41,7 @@
                    style="?android:attr/textAppearanceLarge">
                </TextView>

            </FrameLayout>
            </LinearLayout>

        </androidx.core.widget.NestedScrollView>

+1 −1
Original line number Diff line number Diff line
@@ -77,7 +77,7 @@ public abstract class PermissionsFrameFragment extends PreferenceFragmentCompat
        mPreferencesContainer = (ViewGroup) super.onCreateView(
                inflater, mPrefsView, savedInstanceState);
        setLoading(mIsLoading, false, true /* force */);
        mPrefsView.addView(mPreferencesContainer);
        mPrefsView.addView(mPreferencesContainer, 0);
        return rootView;
    }