1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-26 11:52:10 +01:00

16 lines
218 B
QML
Raw Normal View History

2013-11-20 12:24:34 +01:00
import QtQuick 2.0
import QtQuick.Controls 1.0
Rectangle {
width: 100
height: 62
Button {
id: button1
x: 8
y: 18
text: qsTr("OK")
onClicked: dialog.close()
}
}