Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Initial support for filtering notifications by sending account #1127

Merged
merged 9 commits into from
Nov 25, 2024
Prev Previous commit
Next Next commit
Lint
  • Loading branch information
nikclayton committed Nov 24, 2024
commit 5ca78723038a9eece5b4ec63e8782889d8e47374
6 changes: 4 additions & 2 deletions app/src/main/res/layout/item_notification_filtered.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
app:drawableStartCompat="@drawable/ic_person_add_24dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:text="A user @example.com followed you" />
tools:text="A user @example.com followed you"
tools:ignore="RtlSymmetry,SelectableText" />

<TextView
android:id="@+id/account_filter_reason"
Expand All @@ -38,7 +39,8 @@
android:textSize="?attr/status_text_medium"
android:textAlignment="center"
android:textIsSelectable="false"
tools:text="Warning because account is younger than 28d" />
tools:text="Warning because account is younger than 28d"
tools:ignore="RtlSymmetry" />

<Button
android:id="@+id/account_filter_edit_filter"
Expand Down
Loading