Skip to content

Commit 42f77a0

Browse files
committed
Fix: Removed the Vertical lines.
1 parent 67ef9fc commit 42f77a0

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

AnkiDroid/src/main/java/com/ichi2/anki/browser/BrowserMultiColumnAdapter.kt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,6 @@ class BrowserMultiColumnAdapter(
102102
inflate(R.layout.browser_column_cell).apply {
103103
columnViews.add(this as TextView)
104104
}
105-
106-
if (index < value) {
107-
inflate(R.layout.browser_column_divider)
108-
}
109105
}
110106

111107
columnViews.forEach { it.setupTextSize() }

AnkiDroid/src/main/res/layout/browser_column_cell.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
android:layout_width="0dp"
1919
android:layout_height="match_parent"
2020
android:layout_weight="1"
21-
android:paddingStart="4dp"
21+
android:paddingStart="8dp"
2222
android:paddingVertical="1dp"
2323
android:layout_gravity="top"
2424
/>

AnkiDroid/src/main/res/layout/browser_column_heading.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
android:layout_height="48dp"
2020
android:layout_weight="1"
2121
android:textFontWeight="700"
22-
android:paddingStart="4dp"
22+
android:paddingStart="8dp"
2323
android:textAppearance="@style/TextAppearance.AppCompat.Widget.TextView.SpinnerItem"
2424
android:gravity="center_vertical"
2525
/>

0 commit comments

Comments
 (0)