mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 13:07:38 +03:00
layout update
This commit is contained in:
parent
4a5fc2104f
commit
eb65822665
5 changed files with 449 additions and 361 deletions
|
@ -440,14 +440,15 @@ QStringList Group::hierarchy()
|
|||
QStringList hierarchy;
|
||||
Group* group = this;
|
||||
Group* parent = m_parent;
|
||||
hierarchy << group->name();
|
||||
hierarchy.prepend(group->name());
|
||||
|
||||
while (parent) {
|
||||
group = group->parentGroup();
|
||||
parent = group->parentGroup();
|
||||
|
||||
hierarchy << group->name();
|
||||
hierarchy.prepend(group->name());
|
||||
}
|
||||
|
||||
return hierarchy;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue