From 0ac05dbb0fe1d5512d390b17c5d545469f962870 Mon Sep 17 00:00:00 2001 From: thez3ro Date: Wed, 8 Feb 2017 00:11:16 +0100 Subject: [PATCH] fix #256 space in autotype sequence --- src/autotype/AutoType.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/autotype/AutoType.cpp b/src/autotype/AutoType.cpp index 0c942e728..9d9629c47 100644 --- a/src/autotype/AutoType.cpp +++ b/src/autotype/AutoType.cpp @@ -396,6 +396,9 @@ QList 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)); }