use space from XCB KeySym

This commit is contained in:
thez3ro 2017-02-08 00:32:22 +01:00
parent 0ac05dbb0f
commit 2975eb315f
No known key found for this signature in database
GPG Key ID: F628F9E41DD7C073
2 changed files with 3 additions and 1 deletions

View File

@ -397,7 +397,7 @@ QList<AutoTypeAction*> AutoType::createActionFromTemplate(const QString& tmpl, c
list.append(new AutoTypeKey(Qt::Key_Enter)); list.append(new AutoTypeKey(Qt::Key_Enter));
} }
else if (tmplName.compare("space",Qt::CaseInsensitive)==0) { else if (tmplName.compare("space",Qt::CaseInsensitive)==0) {
list.append(new AutoTypeChar(' ')); 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));

View File

@ -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: