summaryrefslogtreecommitdiff
path: root/kodereviewer/qml/CommentPage.qml
diff options
context:
space:
mode:
Diffstat (limited to 'kodereviewer/qml/CommentPage.qml')
-rw-r--r--kodereviewer/qml/CommentPage.qml3
1 files changed, 3 insertions, 0 deletions
diff --git a/kodereviewer/qml/CommentPage.qml b/kodereviewer/qml/CommentPage.qml
index 8c297bc..756f5da 100644
--- a/kodereviewer/qml/CommentPage.qml
+++ b/kodereviewer/qml/CommentPage.qml
@@ -57,6 +57,7 @@ Kirigami.ScrollablePage {
delegate: CommentDelegate {}
footerPositioning: ListView.InlineFooter
footer: Item {
+ id: rootFooter
anchors.left: parent.left
anchors.right: parent.right
height: footerLayout.implicitHeight
@@ -64,6 +65,7 @@ Kirigami.ScrollablePage {
id: footerLayout
anchors.fill: parent
anchors.topMargin: Kirigami.Units.largeSpacing * 2
+
MarkdownTextArea {
id: newCommentTextArea
Layout.fillWidth: true
@@ -71,6 +73,7 @@ Kirigami.ScrollablePage {
QQC2.Button {
icon.name: "document-send-symbolic"
enabled: newCommentTextArea.text != ''
+ Layout.fillHeight: true
onClicked: {
if (newCommentTextArea.text == '') {