mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-07-04 03:17:08 -04:00
fix #256 space in autotype sequence
This commit is contained in:
parent
7db7747cb0
commit
0ac05dbb0f
1 changed files with 3 additions and 0 deletions
|
@ -396,6 +396,9 @@ QList<AutoTypeAction*> AutoType::createActionFromTemplate(const QString& tmpl, c
|
|||
else if (tmplName.compare("enter",Qt::CaseInsensitive)==0) {
|
||||
list.append(new AutoTypeKey(Qt::Key_Enter));
|
||||
}
|
||||
else if (tmplName.compare("space",Qt::CaseInsensitive)==0) {
|
||||
list.append(new AutoTypeChar(' '));
|
||||
}
|
||||
else if (tmplName.compare("up",Qt::CaseInsensitive)==0) {
|
||||
list.append(new AutoTypeKey(Qt::Key_Up));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue