Use display name for identity selector

This commit is contained in:
M66B
2022-09-23 17:58:25 +02:00
parent 538a4875e6
commit 8cb1e7fe2f

View File

@@ -60,7 +60,7 @@ public class FragmentDialogSelectIdentity extends FragmentDialogBase {
tv.setPadding(0, vpad, 0, vpad);
vwColor.setBackgroundColor(identity.color == null ? Color.TRANSPARENT : identity.color);
tv.setText(identity.name);
tv.setText(identity.getDisplayName());
return view;
}