Skip to content

Commit 6388987

Browse files
committed
Fix compose_compiler_config.conf location | Suppress lint warning
1 parent 62591e6 commit 6388987

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed
File renamed without changes.

app/src/main/kotlin/com/w2sv/wifiwidget/ui/screens/widgetconfiguration/components/configuration/CheckRowColumn.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,9 @@ fun DragAndDroppableCheckRowColumn(
9595

9696
LazyColumn(
9797
state = lazyListState,
98-
modifier = modifier.heightIn(max = 2_000.dp), // Max height necessary due to nesting inside scrollable column. Chosen arbitrarily ("some height that'll surely accommodate the column height")
98+
modifier = modifier.heightIn(
99+
max = 2_000.dp // Necessary due to nesting inside scrollable column. Chosen arbitrarily.
100+
),
99101
userScrollEnabled = false
100102
) {
101103
items(elements, key = { it.property.labelRes }) { data ->

core/widget/src/main/res/layout/wifi_property.xml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3+
xmlns:tools="http://schemas.android.com/tools"
34
android:id="@+id/wifi_property_layout"
45
android:layout_width="match_parent"
56
android:layout_height="wrap_content"
@@ -15,7 +16,8 @@
1516
android:layout_width="@dimen/wifi_property_label_width"
1617
android:layout_height="wrap_content"
1718
android:bufferType="spannable"
18-
android:paddingEnd="6dp" />
19+
android:paddingEnd="6dp"
20+
tools:ignore="RtlSymmetry" />
1921

2022
<TextView
2123
android:id="@+id/property_value_tv"
@@ -33,7 +35,8 @@
3335
<TextView
3436
android:id="@+id/ip_sub_property_tv_1"
3537
style="@style/IpSubPropertyTextView"
36-
android:layout_marginEnd="6dp" />
38+
android:layout_marginEnd="6dp"
39+
tools:ignore="RtlSymmetry" />
3740

3841
<TextView
3942
android:id="@+id/ip_sub_property_tv_2"

0 commit comments

Comments
 (0)