mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-10 07:05:06 +01:00
Flipped order of options in filter sheet
Unread/ unread progress no longer hide when one or the other selected
This commit is contained in:
parent
467abf8403
commit
7022cce4c2
@ -114,8 +114,8 @@ class FilterBottomSheet @JvmOverloads constructor(context: Context, attrs: Attri
|
|||||||
if (context.resources.configuration.orientation == Configuration.ORIENTATION_LANDSCAPE) {
|
if (context.resources.configuration.orientation == Configuration.ORIENTATION_LANDSCAPE) {
|
||||||
second_layout.removeView(view_options)
|
second_layout.removeView(view_options)
|
||||||
second_layout.removeView(reorder_filters)
|
second_layout.removeView(reorder_filters)
|
||||||
first_layout.addView(view_options)
|
|
||||||
first_layout.addView(reorder_filters)
|
first_layout.addView(reorder_filters)
|
||||||
|
first_layout.addView(view_options)
|
||||||
second_layout.gone()
|
second_layout.gone()
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -412,24 +412,6 @@ class FilterBottomSheet @JvmOverloads constructor(context: Context, attrs: Attri
|
|||||||
}?.set(index + 1)
|
}?.set(index + 1)
|
||||||
onGroupClicked(ACTION_FILTER)
|
onGroupClicked(ACTION_FILTER)
|
||||||
}
|
}
|
||||||
if (view == unread) {
|
|
||||||
if (index >= 0) {
|
|
||||||
filter_layout.removeView(unreadProgress)
|
|
||||||
filterItems.remove(unreadProgress)
|
|
||||||
} else {
|
|
||||||
filter_layout.addView(unreadProgress, indexOf(unreadProgress) + addForClear())
|
|
||||||
filterItems.add(indexOf(unreadProgress), unreadProgress)
|
|
||||||
}
|
|
||||||
} else if (view == unreadProgress) {
|
|
||||||
if (index >= 0) {
|
|
||||||
filter_layout.removeView(unread)
|
|
||||||
filterItems.remove(unread)
|
|
||||||
} else {
|
|
||||||
filter_layout.addView(unread, indexOf(unread) + addForClear())
|
|
||||||
filterItems.add(indexOf(unread), unread)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (tracked?.isActivated == true && trackers != null && trackers?.parent == null) {
|
if (tracked?.isActivated == true && trackers != null && trackers?.parent == null) {
|
||||||
filter_layout.addView(trackers, filterItems.indexOf(tracked!!) + 1)
|
filter_layout.addView(trackers, filterItems.indexOf(tracked!!) + 1)
|
||||||
filterItems.add(filterItems.indexOf(tracked!!) + 1, trackers!!)
|
filterItems.add(filterItems.indexOf(tracked!!) + 1, trackers!!)
|
||||||
|
@ -93,30 +93,31 @@
|
|||||||
android:id="@+id/second_layout"
|
android:id="@+id/second_layout"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="10dp"
|
|
||||||
android:orientation="horizontal">
|
android:orientation="horizontal">
|
||||||
|
|
||||||
<com.google.android.material.button.MaterialButton
|
|
||||||
android:id="@+id/view_options"
|
|
||||||
style="@style/Theme.Widget.Button.TextButton"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:text="@string/display_options"
|
|
||||||
android:textColor="?android:attr/textColorPrimary"
|
|
||||||
app:icon="@drawable/ic_tune_white_24dp"
|
|
||||||
app:iconTint="?android:attr/textColorPrimary" />
|
|
||||||
|
|
||||||
<com.google.android.material.button.MaterialButton
|
<com.google.android.material.button.MaterialButton
|
||||||
android:id="@+id/reorder_filters"
|
android:id="@+id/reorder_filters"
|
||||||
style="@style/Theme.Widget.Button.TextButton"
|
style="@style/Theme.Widget.Button.TextButton"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="10dp"
|
android:layout_marginStart="10dp"
|
||||||
|
android:layout_marginEnd="10dp"
|
||||||
android:text="@string/reorder_filters"
|
android:text="@string/reorder_filters"
|
||||||
android:textColor="?android:attr/textColorPrimary"
|
android:textColor="?android:attr/textColorPrimary"
|
||||||
app:icon="@drawable/ic_swap_vert_24dp"
|
app:icon="@drawable/ic_swap_vert_24dp"
|
||||||
app:iconTint="?android:attr/textColorPrimary" />
|
app:iconTint="?android:attr/textColorPrimary" />
|
||||||
|
|
||||||
|
<com.google.android.material.button.MaterialButton
|
||||||
|
android:id="@+id/view_options"
|
||||||
|
style="@style/Theme.Widget.Button.TextButton"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginStart="10dp"
|
||||||
|
android:text="@string/display_options"
|
||||||
|
android:textColor="?android:attr/textColorPrimary"
|
||||||
|
app:icon="@drawable/ic_tune_white_24dp"
|
||||||
|
app:iconTint="?android:attr/textColorPrimary" />
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user