diff --git a/qml/form/RoomForm.qml b/qml/form/RoomForm.qml index a8ce137..8c10933 100644 --- a/qml/form/RoomForm.qml +++ b/qml/form/RoomForm.qml @@ -195,10 +195,8 @@ Item { spacing: 8 RowLayout { - readonly property bool sectionVisible: section !== aboveSection - width: parent.width * 0.8 - visible: sectionVisible + visible: section !== aboveSection anchors.horizontalCenter: parent.horizontalCenter spacing: 8 @@ -221,6 +219,31 @@ Item { } } + RowLayout { + width: parent.width * 0.8 + visible: readMarker === true && index !== 0 + anchors.horizontalCenter: parent.horizontalCenter + spacing: 8 + + Rectangle { + Layout.fillWidth: true + height:2 + color: Material.accent + } + + Label { + text: "And Now" + color: Material.accent + verticalAlignment: Text.AlignVCenter + } + + Rectangle { + Layout.fillWidth: true + height:2 + color: Material.accent + } + } + MessageDelegate {} }