mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-01-26 11:52:10 +01:00
16 lines
218 B
QML
16 lines
218 B
QML
|
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()
|
||
|
}
|
||
|
}
|