Merge pull request #403 from michaelschattgen/feature/card-entry-overhaul

Add minor card entry layout overhaul
This commit is contained in:
Alexander Bakker 2020-05-16 12:20:46 +02:00 committed by GitHub
commit 9319c74932
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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);