aboutsummaryrefslogtreecommitdiff
path: root/src/widget/HistoryViewer.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/widget/HistoryViewer.qml')
-rw-r--r--src/widget/HistoryViewer.qml11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/widget/HistoryViewer.qml b/src/widget/HistoryViewer.qml
index ca042f4..60c749b 100644
--- a/src/widget/HistoryViewer.qml
+++ b/src/widget/HistoryViewer.qml
@@ -10,7 +10,7 @@ Item {
height: viewer.height
width: parent.width - settings.terminal.frameWidth
- Text {
+ TextEdit {
id: viewer
anchors {
@@ -19,14 +19,19 @@ Item {
right: parent.right
}
- color: settings.item.fontColor
+ Layout.fillWidth: true
font {
family: settings.terminal.fontFamily
pointSize: settings.terminal.fontSize
}
- Layout.fillWidth: true
+ color: settings.item.fontColor
+ selectionColor: settings.item.fontColor
+ selectedTextColor: settings.window.background
+
+ selectByMouse: true
+ readOnly: true
text: history.trim()
}