Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion app/qml/settings/MMLogPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ MMPage {

maximumFlickVelocity: __androidUtils.isAndroid ? __style.scrollVelocityAndroid : maximumFlickVelocity

Text {
TextEdit {
id: txt
text: "<style>" + "a:link { color: " + __style.earthColor
+ "; text-decoration: underline; }" + "p.odd { color: "
Expand All @@ -46,6 +46,10 @@ MMPage {
color: __style.forestColor
textFormat: Text.RichText
wrapMode: Text.WordWrap
readOnly: true
selectByMouse: true
selectByKeyboard: true
selectionColor: __style.forestColor
width: parent.width
}

Expand Down
Loading