mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-02 01:48:05 +00:00
Bug 1176886 - Add UselessParent ignore to tab_queue_prompt. r=mhaigh
--HG-- extra : commitid : CdwTYiJfLx4 extra : rebase_source : 4215e11755ed2f966696d89c60f1fb862a1ce1f3
This commit is contained in:
parent
828915907f
commit
e1b9066d7c
@ -4,6 +4,8 @@
|
||||
- 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/. -->
|
||||
|
||||
<!-- (lint: UselessParent) The second-outermost layout doesn't have a parent to position itself
|
||||
against and would take up the whole screen without the outermost layout. -->
|
||||
<FrameLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
@ -11,7 +13,8 @@
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:clipChildren="false"
|
||||
android:clipToPadding="false">
|
||||
android:clipToPadding="false"
|
||||
tools:ignore="UselessParent">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="@dimen/tab_queue_container_width"
|
||||
|
@ -3,12 +3,15 @@
|
||||
- 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/. -->
|
||||
|
||||
<!-- (lint: UselessParent) The second-outermost layout doesn't have a parent to position itself
|
||||
against and would take up the whole screen without the outermost layout. -->
|
||||
<FrameLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
android:layout_height="wrap_content"
|
||||
tools:ignore="UselessParent">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/toast"
|
||||
|
Loading…
Reference in New Issue
Block a user