mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-05-07 07:50:54 +02:00
18 lines
448 B
QML
18 lines
448 B
QML
//
|
|
// 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
|
|
}
|