12 lines
212 B
QML
12 lines
212 B
QML
import QtQuick 2.12
|
|
import QtQuick.Controls 2.12
|
|
|
|
import Utils 1.0
|
|
|
|
TextArea {
|
|
color: Palette.textColor
|
|
selectByMouse: true
|
|
selectionColor: Palette.alternativeBackgroundColor
|
|
font.pixelSize: 16
|
|
}
|