Skip to content

Commit

Permalink
minor bugfix when parsing macros
Browse files Browse the repository at this point in the history
  • Loading branch information
kermitfrog committed Nov 21, 2014
1 parent a426811 commit 541657c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion output.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ void OutEvent::parseMacro(QStringList l)
if (!s.startsWith('~'))
{
outType = OutEvent::Macro;
QStringList parts = s.split(' ');
QStringList parts = s.split(' ', QString::SkipEmptyParts);
QStringList comboParts = parts[0].split("+");
fromInputEvent(keymap[comboParts[0]]);
if (comboParts.size() > 1)
Expand Down

0 comments on commit 541657c

Please sign in to comment.