aboutsummaryrefslogtreecommitdiff
path: root/qml/CommandInput.qml
diff options
context:
space:
mode:
Diffstat (limited to 'qml/CommandInput.qml')
-rw-r--r--qml/CommandInput.qml4
1 files changed, 4 insertions, 0 deletions
diff --git a/qml/CommandInput.qml b/qml/CommandInput.qml
index e7defbf..5010891 100644
--- a/qml/CommandInput.qml
+++ b/qml/CommandInput.qml
@@ -7,6 +7,8 @@ import "commands.js" as Commands
Item {
id: item
+ signal executed
+
visible: false
Settings {
@@ -62,6 +64,8 @@ Item {
console.log('"' + prefix + '"' + " is not a command prefix");
}
}
+
+ item.executed();
}
}
}