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