mirror of
https://github.com/libre-tube/LibreTube.git
synced 2025-04-28 07:50:31 +05:30
Merge pull request #6175 from Bnyro/master
fix: can't add channel to group if more than ~10 groups
This commit is contained in:
commit
593388fb36
@ -126,7 +126,6 @@ dependencies {
|
||||
implementation(libs.kotlinx.serialization)
|
||||
implementation(libs.kotlinx.datetime)
|
||||
implementation(libs.kotlinx.serialization.retrofit)
|
||||
testImplementation(libs.testng)
|
||||
|
||||
/* Cronet and Coil */
|
||||
coreLibraryDesugaring(libs.desugaring)
|
||||
@ -144,4 +143,7 @@ dependencies {
|
||||
|
||||
/* AndroidX Paging */
|
||||
implementation(libs.androidx.paging)
|
||||
|
||||
/* Testing */
|
||||
testImplementation(libs.testng)
|
||||
}
|
||||
|
@ -3,7 +3,8 @@
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal"
|
||||
android:padding="12dp">
|
||||
android:paddingHorizontal="12dp"
|
||||
android:paddingVertical="3dp">
|
||||
|
||||
<CheckBox
|
||||
android:id="@+id/group_checkbox"
|
||||
|
@ -14,7 +14,7 @@
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical">
|
||||
|
||||
<!-- Drag handle for accessibility -->
|
||||
@ -47,7 +47,8 @@
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/groupsRV"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content" />
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
@ -57,6 +58,7 @@
|
||||
|
||||
<com.google.android.material.button.MaterialButton
|
||||
android:id="@+id/cancel"
|
||||
style="@style/Widget.Material3.Button.OutlinedButton"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/cancel" />
|
Loading…
x
Reference in New Issue
Block a user