mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 13:37:43 +03:00
Add settings option if visual changes mark databases as modified.
This commit is contained in:
parent
8aefb1ed82
commit
5003499700
4 changed files with 21 additions and 1 deletions
|
@ -17,6 +17,7 @@
|
|||
|
||||
#include "Group.h"
|
||||
|
||||
#include "core/Config.h"
|
||||
#include "core/DatabaseIcons.h"
|
||||
#include "core/Metadata.h"
|
||||
#include "core/Tools.h"
|
||||
|
@ -225,7 +226,13 @@ void Group::setTimeInfo(const TimeInfo& timeInfo)
|
|||
|
||||
void Group::setExpanded(bool expanded)
|
||||
{
|
||||
set(m_isExpanded, expanded);
|
||||
if (m_isExpanded != expanded) {
|
||||
m_isExpanded = expanded;
|
||||
updateTimeinfo();
|
||||
if (config()->get("ModifiedOnVisualChanges").toBool()) {
|
||||
Q_EMIT modified();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void Group::setDefaultAutoTypeSequence(const QString& sequence)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue