mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-11-28 02:20:42 -05:00
Mask passwords in URL column in Entry View
This commit is contained in:
parent
cb0b948603
commit
59786d7bd7
3 changed files with 11 additions and 2 deletions
|
|
@ -151,7 +151,8 @@ QVariant EntryModel::data(const QModelIndex& index, int role) const
|
|||
}
|
||||
return result;
|
||||
case Url:
|
||||
result = entry->resolveMultiplePlaceholders(entry->url());
|
||||
result = entry->maskPasswordPlaceholders(entry->url());
|
||||
result = entry->resolveMultiplePlaceholders(result);
|
||||
if (attr->isReference(EntryAttributes::URLKey)) {
|
||||
result.prepend(tr("Ref: ","Reference abbreviation"));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue