mirror of
https://github.com/nomic-ai/gpt4all
synced 2024-11-06 09:20:33 +00:00
697a5f5d2a
Signed-off-by: Adam Treat <treat.adam@gmail.com>
22 lines
551 B
QML
22 lines
551 B
QML
import QtCore
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Controls.Basic
|
|
|
|
TextArea {
|
|
id: myTextArea
|
|
color: enabled ? theme.textColor : theme.mutedTextColor
|
|
placeholderTextColor: theme.mutedTextColor
|
|
font.pixelSize: theme.fontSizeLarge
|
|
background: Rectangle {
|
|
implicitWidth: 150
|
|
color: theme.controlBackground
|
|
border.width: 1
|
|
border.color: theme.controlBorder
|
|
radius: 10
|
|
}
|
|
padding: 10
|
|
wrapMode: TextArea.Wrap
|
|
|
|
ToolTip.delay: Qt.styleHints.mousePressAndHoldInterval
|
|
} |