summaryrefslogtreecommitdiffstats
path: root/applications/kube-mail/package/contents/ui/FocusComposer.qml
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2016-03-01 00:08:45 +0100
committerChristian Mollekopf <chrigi_1@fastmail.fm>2016-03-01 00:08:45 +0100
commit235b8cb38214fe1ec919fce8701737d7b944c6de (patch)
tree92468fe9c9f939086d8dac6f01d36f4f71a40c95 /applications/kube-mail/package/contents/ui/FocusComposer.qml
parent0467b39e1ca034ec7298017e3055e352c755a386 (diff)
downloadkube-235b8cb38214fe1ec919fce8701737d7b944c6de.tar.gz
kube-235b8cb38214fe1ec919fce8701737d7b944c6de.zip
Support for mail replies
A template message is generated based on the input message, including appropriate recepients and quoted text. Encoding and and options are mostly hardcoded still, and there might be one or the other crash with HTML mails. Also image/attachment support is incomplete.
Diffstat (limited to 'applications/kube-mail/package/contents/ui/FocusComposer.qml')
-rw-r--r--applications/kube-mail/package/contents/ui/FocusComposer.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/kube-mail/package/contents/ui/FocusComposer.qml b/applications/kube-mail/package/contents/ui/FocusComposer.qml
index 20899817..2be656ab 100644
--- a/applications/kube-mail/package/contents/ui/FocusComposer.qml
+++ b/applications/kube-mail/package/contents/ui/FocusComposer.qml
@@ -11,7 +11,6 @@
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details. 12 * GNU General Public License for more details.
13 * 13 *
14//import org.kde.kube.mail 1.0 as Mail
15 * You should have received a copy of the GNU General Public License 14 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, see <http://www.gnu.org/licenses/>. 15 * along with this program; if not, see <http://www.gnu.org/licenses/>.
17 */ 16 */
@@ -22,6 +21,7 @@ import QtQuick.Layouts 1.1
22 21
23Rectangle { 22Rectangle {
24 id: root 23 id: root
24 property variant originalMessage
25 25
26 visible: false 26 visible: false
27 27
@@ -61,7 +61,7 @@ Rectangle {
61 61
62 Layout.fillWidth: true 62 Layout.fillWidth: true
63 Layout.fillHeight: true 63 Layout.fillHeight: true
64 64 originalMessage: root.originalMessage
65 } 65 }
66 66
67 RowLayout { 67 RowLayout {