a8534bd967
Need to do some basic checks like bounds checking And make the images show back up
18 lines
330 B
QML
18 lines
330 B
QML
import QtQuick 2.4
|
|
import QtQuick.Controls 1.3
|
|
|
|
ApplicationWindow {
|
|
flags: Qt.MaximumSize
|
|
Component.onCompleted: visible = true
|
|
|
|
Image {
|
|
id: image1
|
|
objectName: "displayImage"
|
|
sourceSize.height: 768
|
|
sourceSize.width: 1024
|
|
antialiasing: true
|
|
anchors.fill: parent
|
|
}
|
|
|
|
}
|