mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 21:17:43 +03:00
Fix crash when search clears while creating new entry
* Fixes #7660 * Also fix code error in Icons::imageFormatsFilter. An inner loop looks for invalid characters in the code point, but erroneously calls `continue` within the inner loop when the intention was to continue in the outer loop. Fixed with a boolean test instead.
This commit is contained in:
parent
3d1449d4f1
commit
97adfd5b54
2 changed files with 11 additions and 7 deletions
|
@ -565,6 +565,9 @@ void EntryPreviewWidget::setTabEnabled(QTabWidget* tabWidget, QWidget* widget, b
|
|||
|
||||
QString EntryPreviewWidget::hierarchy(const Group* group, const QString& title)
|
||||
{
|
||||
QString groupList = QString("%1").arg(group->hierarchy().join(" / "));
|
||||
return title.isEmpty() ? groupList : QString("%1 / %2").arg(groupList, title);
|
||||
if (group) {
|
||||
QString groupList = QString("%1").arg(group->hierarchy().join(" / "));
|
||||
return title.isEmpty() ? groupList : QString("%1 / %2").arg(groupList, title);
|
||||
}
|
||||
return {};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue