1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-22 14:11:00 +00:00

Small improvements

This commit is contained in:
M66B 2021-09-25 13:02:56 +02:00
parent 745cd80c33
commit e51ff622c6
2 changed files with 3 additions and 3 deletions

View file

@ -924,8 +924,8 @@ public class BoundaryCallbackMessages extends PagedList.BoundaryCallback<TupleMe
if (with_size != null) if (with_size != null)
flags.add(context.getString(R.string.title_search_flag_size, flags.add(context.getString(R.string.title_search_flag_size,
Helper.humanReadableByteCount(with_size))); Helper.humanReadableByteCount(with_size)));
return (query == null ? "" : query) return (query == null ? "" : query + " ")
+ (flags.size() > 0 ? " +" : "") + (flags.size() > 0 ? "+" : "")
+ TextUtils.join(",", flags); + TextUtils.join(",", flags);
} }

View file

@ -23,7 +23,7 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginTop="24dp" android:layout_marginTop="24dp"
android:imeOptions="actionDone" android:imeOptions="actionDone"
android:inputType="textPersonName|textCapWords" android:inputType="textCapSentences"
android:text="Name" android:text="Name"
android:textAppearance="@style/TextAppearance.AppCompat.Medium" android:textAppearance="@style/TextAppearance.AppCompat.Medium"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"