mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 14:26:34 +00:00
f900e7c00e
Fixes: #7389
13 lines
335 B
QML
13 lines
335 B
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
|
|
import utils 1.0
|
|
|
|
TextField {
|
|
font.family: Style.current.baseFont.name
|
|
color: readOnly ? Style.current.secondaryText : Style.current.textColor
|
|
selectByMouse: !readOnly
|
|
selectedTextColor: Style.current.textColor
|
|
selectionColor: Style.current.primarySelectionColor
|
|
}
|