diff --git a/CellFrameDashboardGUI/DapUiQmlScreenConsoleForm.ui.qml b/CellFrameDashboardGUI/DapUiQmlScreenConsoleForm.ui.qml
index 56fc11f427a7c396c7fc55d2d161c860ec6b8bc0..2d1b09696ed430027c88db2a12335fb0170dd87b 100644
--- a/CellFrameDashboardGUI/DapUiQmlScreenConsoleForm.ui.qml
+++ b/CellFrameDashboardGUI/DapUiQmlScreenConsoleForm.ui.qml
@@ -22,6 +22,7 @@ Page {
         DapUiQmlWidgetConsoleLastActionsForm {
             id: lastActionsPanel
             consoleData: dapConsoleForm.textAreaCmdHistory
+//            border.color: "transparent"
         }
     }
 }
diff --git a/CellFrameDashboardGUI/DapUiQmlWidgetLastActions.qml b/CellFrameDashboardGUI/DapUiQmlWidgetLastActions.qml
index 43b5284e3fdd437e19645472fca63bc05432f8e9..4ff619a69af15bb039d2ef69b628f705fadb00e4 100644
--- a/CellFrameDashboardGUI/DapUiQmlWidgetLastActions.qml
+++ b/CellFrameDashboardGUI/DapUiQmlWidgetLastActions.qml
@@ -29,11 +29,25 @@ DapUiQmlWidgetLastActionsForm {
 
     DapUiQmlWidgetLastActionsHeaderForm {
         id: dapHeader
+        height: 36 * pt
+        anchors.left: parent.left
+        anchors.top: parent.top
+        anchors.right: parent.right
+        anchors.leftMargin: 1 * pt
+    }
+
+    Rectangle {
+        id: splitHeader
+        anchors.top: dapHeader.bottom
+        anchors.left: parent.left
+        anchors.right: parent.right
+        height: 1 * pt
+        color: "#C2CAD1"
     }
 
     ListView {
         id: dapListView
-        anchors.top: dapHeader.bottom
+        anchors.top: splitHeader.bottom
         anchors.left: parent.left
         anchors.right: parent.right
         anchors.bottom: parent.bottom
diff --git a/CellFrameDashboardGUI/DapUiQmlWidgetLastActionsHeaderForm.qml b/CellFrameDashboardGUI/DapUiQmlWidgetLastActionsHeaderForm.qml
index 5a999d93f371f6ab0d5c091f8f9719702f9539e2..bc8002bda195737b8e9c7716a8d293dcd77dcf7b 100644
--- a/CellFrameDashboardGUI/DapUiQmlWidgetLastActionsHeaderForm.qml
+++ b/CellFrameDashboardGUI/DapUiQmlWidgetLastActionsHeaderForm.qml
@@ -4,24 +4,15 @@ import QtQuick.Controls 2.2
 import QtQuick.Layouts 1.12
 
 Rectangle {
-    width: parent.width
-    height: 36 * pt
     color: "#EDEFF2"
 
-    Item {
-        width: childrenRect.width
-        height: childrenRect.height
-        anchors.top: parent.top
-        anchors.left: parent.left
-
+    Text {
+        anchors.fill: parent
         anchors.leftMargin: 16 * pt
-        anchors.topMargin: 13
-
-        Text {
-            text: qsTr("Last actions")
-            font.family: "Roboto"
-            font.pixelSize: 12 * pt
-            color: "#5F5F63"
-        }
+        text: qsTr("Last actions")
+        verticalAlignment: Qt.AlignVCenter
+        font.family: "Roboto"
+        font.pixelSize: 12 * pt
+        color: "#5F5F63"
     }
 }