mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04:00
fix #256 space in autotype sequence
This commit is contained in:
parent
7db7747cb0
commit
0ac05dbb0f
@ -396,6 +396,9 @@ QList<AutoTypeAction*> AutoType::createActionFromTemplate(const QString& tmpl, c
|
|||||||
else if (tmplName.compare("enter",Qt::CaseInsensitive)==0) {
|
else if (tmplName.compare("enter",Qt::CaseInsensitive)==0) {
|
||||||
list.append(new AutoTypeKey(Qt::Key_Enter));
|
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) {
|
else if (tmplName.compare("up",Qt::CaseInsensitive)==0) {
|
||||||
list.append(new AutoTypeKey(Qt::Key_Up));
|
list.append(new AutoTypeKey(Qt::Key_Up));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user