[android] Allow multiple lines in map name field of search list

Signed-off-by: Gonzalo Pesquero <gpesquero@yahoo.es>
This commit is contained in:
Gonzalo Pesquero 2023-02-13 00:19:50 +01:00 committed by Alexander Borsuk
parent 906ecce476
commit e7858bd1fe
2 changed files with 0 additions and 3 deletions

View file

@ -59,7 +59,6 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="@style/MwmTextAppearance.Body4"
android:maxLines="1"
tools:text="Украина"
tools:background="#60FFFF00"/>
</LinearLayout>

View file

@ -481,7 +481,6 @@ class DownloaderAdapter extends RecyclerView.Adapter<DownloaderAdapter.ViewHolde
String found = null;
if (mSearchResultsMode)
{
mName.setMaxLines(1);
mName.setText(mItem.name);
String searchResultName = mItem.searchResultName;
@ -502,7 +501,6 @@ class DownloaderAdapter extends RecyclerView.Adapter<DownloaderAdapter.ViewHolde
}
else
{
mName.setMaxLines(2);
mName.setText(mItem.name);
if (!mItem.isExpandable())
UiUtils.setTextAndHideIfEmpty(mSubtitle, mItem.description);