mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-12-04 15:39:34 +01:00
Merge branch 'develop' into fix/custom-attribute
This commit is contained in:
@@ -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 AutoTypeKey(Qt::Key_Space));
|
||||||
|
}
|
||||||
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));
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -435,6 +435,8 @@ KeySym AutoTypePlatformX11::keyToKeySym(Qt::Key key)
|
|||||||
return XK_Tab;
|
return XK_Tab;
|
||||||
case Qt::Key_Enter:
|
case Qt::Key_Enter:
|
||||||
return XK_Return;
|
return XK_Return;
|
||||||
|
case Qt::Key_Space:
|
||||||
|
return XK_space;
|
||||||
case Qt::Key_Up:
|
case Qt::Key_Up:
|
||||||
return XK_Up;
|
return XK_Up;
|
||||||
case Qt::Key_Down:
|
case Qt::Key_Down:
|
||||||
|
|||||||
Reference in New Issue
Block a user