mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-12-05 16:51:12 -07:00
parent
e2fe27e534
commit
926ac69c71
1 changed files with 10 additions and 1 deletions
|
|
@ -14,9 +14,11 @@ UM.Dialog
|
||||||
width: 300 * Screen.devicePixelRatio;
|
width: 300 * Screen.devicePixelRatio;
|
||||||
height: 500 * Screen.devicePixelRatio;
|
height: 500 * Screen.devicePixelRatio;
|
||||||
title: "Changelog"
|
title: "Changelog"
|
||||||
|
|
||||||
ScrollView
|
ScrollView
|
||||||
{
|
{
|
||||||
anchors.fill:parent
|
width: parent.width
|
||||||
|
height: parent.height - 25
|
||||||
Text
|
Text
|
||||||
{
|
{
|
||||||
text: manager.getChangeLogString()
|
text: manager.getChangeLogString()
|
||||||
|
|
@ -24,4 +26,11 @@ UM.Dialog
|
||||||
wrapMode: Text.Wrap;
|
wrapMode: Text.Wrap;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Button
|
||||||
|
{
|
||||||
|
anchors.bottom:parent.bottom
|
||||||
|
text: "close"
|
||||||
|
onClicked: base.hide()
|
||||||
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue