mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-16 03:07:53 -06:00
36 lines
765 B
QML
36 lines
765 B
QML
// Copyright (c) 2015 Ultimaker B.V.
|
|
// Cura is released under the terms of the AGPLv3 or higher.
|
|
|
|
import QtQuick 2.1
|
|
import QtQuick.Controls 1.1
|
|
import QtQuick.Layouts 1.1
|
|
import QtQuick.Window 2.1
|
|
|
|
import UM 1.1 as UM
|
|
|
|
UM.Dialog
|
|
{
|
|
id: base
|
|
width: 300 * Screen.devicePixelRatio;
|
|
height: 500 * Screen.devicePixelRatio;
|
|
title: "Changelog"
|
|
|
|
ScrollView
|
|
{
|
|
width: parent.width
|
|
height: parent.height - 25
|
|
Text
|
|
{
|
|
text: manager.getChangeLogString()
|
|
width:base.width - 35
|
|
wrapMode: Text.Wrap;
|
|
}
|
|
}
|
|
Button
|
|
{
|
|
anchors.bottom:parent.bottom
|
|
text: "close"
|
|
onClicked: base.hide()
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
}
|
|
}
|