Files
qt-creator/share/qtcreator/qmldesigner/effectComposerQmlSources/ValueDefine.qml

25 lines
541 B
QML
Raw Normal View History

// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
import QtQuick
import StudioControls as StudioControls
import StudioTheme as StudioTheme
import EffectComposerBackend
Row {
width: parent.width
StudioControls.TextField {
id: textField
width: parent.width - 20
actionIndicatorVisible: false
translationIndicatorVisible: false
text: uniformValue
onEditingFinished: uniformValue = text
}
}