You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
433 B
QML

import QtQuick 2.6
import QtQuick.Controls 2.0
ApplicationWindow {
id: root
width: 300
height: 480
visible: true
/* This absolutely does not make any practical sense,
* I just try to make it work and see what's
* gonna happen */
TextField {
text: dialogue.exit_code
placeholderText: qsTr("exit code")
anchors.centerIn: parent
onTextChanged: dialogue.exit_code = text
}
}