diff --git a/resources/qml/MatrixText.qml b/resources/qml/MatrixText.qml
index cbb1c88883a73533852c02fd3b248c53db02a8e0..9a4f73488c0576c15f8a2758503c3d6c526f62f7 100644
--- a/resources/qml/MatrixText.qml
+++ b/resources/qml/MatrixText.qml
@@ -1,15 +1,12 @@
 import QtQuick 2.5
 import QtQuick.Controls 2.3
 
-TextArea {
+TextEdit {
 	textFormat: TextEdit.RichText
 	readOnly: true
 	wrapMode: Text.Wrap
 	selectByMouse: true
-	//color: colors.text
-	palette: colors
-
-	padding: 0
+	color: colors.text
 
 	onLinkActivated: {
 		if (/^https:\/\/matrix.to\/#\/(@.*)$/.test(link)) chat.model.openUserProfile(/^https:\/\/matrix.to\/#\/(@.*)$/.exec(link)[1])