Add minor card entry layout overhaul

This commit is contained in:
Michael Schättgen 2020-05-09 16:55:27 +02:00
parent 499f930086
commit 3a85a05078
5 changed files with 26 additions and 26 deletions

View file

@ -116,7 +116,7 @@ public class EntryHolder extends RecyclerView.ViewHolder {
String profileIssuer = entry.getIssuer();
String profileName = showAccountName ? entry.getName() : "";
if (!profileIssuer.isEmpty() && !profileName.isEmpty()) {
profileName = " - " + profileName;
profileName = String.format(" (%s)", profileName);
}
_profileIssuer.setText(profileIssuer);
_profileName.setText(profileName);