mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-01-15 09:17:28 -05:00
Adding group uuid to list.
This commit is contained in:
parent
fd9d372e6a
commit
a661c17eca
@ -37,7 +37,7 @@ void printGroup(Group* group, QString baseName, int depth) {
|
||||
QString groupName = baseName + group->name() + "/";
|
||||
QString indentation = QString(" ").repeated(depth);
|
||||
|
||||
out << indentation << groupName << "\n";
|
||||
out << indentation << groupName << " " << group->uuid().toHex() << "\n";
|
||||
out.flush();
|
||||
|
||||
if (group->entries().isEmpty() && group->children().isEmpty()) {
|
||||
|
Loading…
Reference in New Issue
Block a user