mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-25 15:44:04 -06:00
Add a link to a network connection troubleshooting guide
CURA-2035
This commit is contained in:
parent
220abd2cdc
commit
af4cfac6ac
1 changed files with 69 additions and 49 deletions
|
@ -77,14 +77,21 @@ Cura.MachineAction
|
||||||
|
|
||||||
Row
|
Row
|
||||||
{
|
{
|
||||||
|
id: contentRow
|
||||||
width: parent.width
|
width: parent.width
|
||||||
spacing: UM.Theme.getSize("default_margin").width
|
spacing: UM.Theme.getSize("default_margin").width
|
||||||
|
|
||||||
|
Column
|
||||||
|
{
|
||||||
|
width: parent.width * 0.5
|
||||||
|
spacing: UM.Theme.getSize("default_margin").height
|
||||||
|
|
||||||
ScrollView
|
ScrollView
|
||||||
{
|
{
|
||||||
id: objectListContainer
|
id: objectListContainer
|
||||||
frameVisible: true
|
frameVisible: true
|
||||||
width: parent.width * 0.5
|
width: parent.width
|
||||||
height: base.height - parent.y
|
height: base.height - contentRow.y - discoveryTip.height
|
||||||
|
|
||||||
Rectangle
|
Rectangle
|
||||||
{
|
{
|
||||||
|
@ -142,6 +149,19 @@ Cura.MachineAction
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Label
|
||||||
|
{
|
||||||
|
id: discoveryTip
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.right: parent.right
|
||||||
|
wrapMode: Text.WordWrap
|
||||||
|
//: Tips label
|
||||||
|
//TODO: get actual link from webteam
|
||||||
|
text: catalog.i18nc("@label", "If your Ultimaker 3 is not listed, read the <a href='%1'>Ultimaker 3 network troubleshooting guide</a>").arg("https://ultimaker.com/en/troubleshooting");
|
||||||
|
onLinkActivated: Qt.openUrlExternally(link)
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
Column
|
Column
|
||||||
{
|
{
|
||||||
width: parent.width * 0.5
|
width: parent.width * 0.5
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue