diff options
author | Matias Linares <matias.linares@comprandoengrupo.net> | 2024-11-04 09:31:26 -0300 |
---|---|---|
committer | Matias Linares <matias.linares@comprandoengrupo.net> | 2024-11-24 11:21:41 -0300 |
commit | 2ef76e8acee23c344335b0118aadd5de96a7dfff (patch) | |
tree | 1eb1fa059ddf07d00834f569611f1ca2e33a961a /kodereviewer/qml/CommentPage.qml | |
parent | 45f03bfb30ea29dd62c0aba3fbe0c002dcdc807a (diff) | |
download | kodereviewer-2ef76e8acee23c344335b0118aadd5de96a7dfff.tar.gz |
[WIP] Add review functionalitytranslationsmain
Diffstat (limited to 'kodereviewer/qml/CommentPage.qml')
-rw-r--r-- | kodereviewer/qml/CommentPage.qml | 3 |
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 == '') { |