Add Autotype Entry-Attributes, Fix Group default sequence (#107)

This commit is contained in:
TheZ3ro 2016-11-25 18:26:59 +01:00 committed by Jonathan White
parent 0dfd2003f9
commit 405b82588b
7 changed files with 114 additions and 49 deletions

View file

@ -201,6 +201,10 @@ QString Group::effectiveAutoTypeSequence() const
group = group->parentGroup();
} while (group && sequence.isEmpty());
if (sequence.isEmpty()) {
sequence = "{USERNAME}{TAB}{PASSWORD}{ENTER}";
}
return sequence;
}