diff --git a/CellFrameDashboardGUI/DapUiQmlScreenConsoleForm.ui.qml b/CellFrameDashboardGUI/DapUiQmlScreenConsoleForm.ui.qml
index 86238fb7694a7203711deb25b686ddb78d598ddd..55329840e2cdb13ca80dcea45626db40574da874 100644
--- a/CellFrameDashboardGUI/DapUiQmlScreenConsoleForm.ui.qml
+++ b/CellFrameDashboardGUI/DapUiQmlScreenConsoleForm.ui.qml
@@ -6,6 +6,7 @@ import QtQuick.Layouts 1.12
 Page {
 
     DapUiQmlWidgetConsoleForm {
+        id: dapConsoleForm
         anchors.top: parent.top
         anchors.bottom: parent.bottom
         anchors.left: parent.left
@@ -18,5 +19,6 @@ Page {
 
     DapUiQmlWidgetConsoleLastActionsForm {
         id: lastActionsPanel
+        consoleData: dapConsoleForm.textAreaCmdHistory
     }
 }
diff --git a/CellFrameDashboardGUI/DapUiQmlWidgetConsoleLastActionsDelegateForm.qml b/CellFrameDashboardGUI/DapUiQmlWidgetConsoleLastActionsDelegateForm.qml
index 3092bc5c15cf97d79817c358a3416c13bcc44a73..9a54cf094185d62b1d7b50a43d80abf22dc1c110 100644
--- a/CellFrameDashboardGUI/DapUiQmlWidgetConsoleLastActionsDelegateForm.qml
+++ b/CellFrameDashboardGUI/DapUiQmlWidgetConsoleLastActionsDelegateForm.qml
@@ -1,8 +1,10 @@
 import QtQuick 2.0
+import QtQuick.Controls 2.12
 import QtQuick.Layouts 1.13
 
 Component {
     ColumnLayout {
+
         anchors.left: parent.left
         anchors.right: parent.right
         anchors.leftMargin: 18 * pt
@@ -22,6 +24,14 @@ Component {
             font.family: "Roboto Regular"
             font.pixelSize: 14 * pt
             clip: true
+
+            MouseArea {
+                anchors.fill: parent
+                onClicked: {
+                    consoleData.append("> " + lastCommand);
+                    dapConsoleModel.receiveRequest(lastCommand);
+                }
+            }
         }
 
         Rectangle {
diff --git a/CellFrameDashboardGUI/DapUiQmlWidgetConsoleLastActionsForm.qml b/CellFrameDashboardGUI/DapUiQmlWidgetConsoleLastActionsForm.qml
index d2ffab08835e00f5a6f2166fe15ace5d79e72924..aa70bfa6364c08e10151c7a6f361d9813246f4e1 100644
--- a/CellFrameDashboardGUI/DapUiQmlWidgetConsoleLastActionsForm.qml
+++ b/CellFrameDashboardGUI/DapUiQmlWidgetConsoleLastActionsForm.qml
@@ -1,8 +1,13 @@
 import QtQuick 2.0
+import QtQuick.Controls 2.1
 import QtQuick.Layouts 1.13
 
 DapUiQmlWidgetLastActions {
+    property TextArea consoleData
+
     id: lastActionsPanel
     viewModel: dapConsoleModel
-    viewDelegate: DapUiQmlWidgetConsoleLastActionsDelegateForm {}
+    viewDelegate: DapUiQmlWidgetConsoleLastActionsDelegateForm {
+
+    }
 }
diff --git a/libdap-crypto b/libdap-crypto
index ff63d762657f9687173db825705b8bf4b958abee..d2c567906d783f94e28ae2ca87acc875175da6a8 160000
--- a/libdap-crypto
+++ b/libdap-crypto
@@ -1 +1 @@
-Subproject commit ff63d762657f9687173db825705b8bf4b958abee
+Subproject commit d2c567906d783f94e28ae2ca87acc875175da6a8