mirror of
https://github.com/lubosz/overte.git
synced 2025-08-07 17:41:12 +02:00
Make copy of TextEdit control for restyling
This commit is contained in:
parent
84e352a1de
commit
86bb1b1ed8
1 changed files with 18 additions and 0 deletions
18
interface/resources/qml/controls-uit/TextEdit.qml
Normal file
18
interface/resources/qml/controls-uit/TextEdit.qml
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
//
|
||||||
|
// TextEdit.qml
|
||||||
|
//
|
||||||
|
// Created by Bradley Austin Davis on 24 Apr 2015
|
||||||
|
// Copyright 2015 High Fidelity, Inc.
|
||||||
|
//
|
||||||
|
// Distributed under the Apache License, Version 2.0.
|
||||||
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
|
//
|
||||||
|
|
||||||
|
import QtQuick 2.3 as Original
|
||||||
|
import "../styles"
|
||||||
|
|
||||||
|
Original.TextEdit {
|
||||||
|
HifiConstants { id: hifi }
|
||||||
|
font.family: hifi.fonts.fontFamily
|
||||||
|
font.pixelSize: hifi.fonts.pixelSize
|
||||||
|
}
|
Loading…
Reference in a new issue