mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 23:17:32 -06:00
Merge branch '4.0' into STAR-322_cloud-connection
This commit is contained in:
commit
dd2f12f68a
2 changed files with 12 additions and 1 deletions
|
@ -18,6 +18,10 @@ Item
|
||||||
|
|
||||||
height: centerSection.height
|
height: centerSection.height
|
||||||
width: maximumWidth
|
width: maximumWidth
|
||||||
|
|
||||||
|
// Enable keyboard navigation
|
||||||
|
Keys.onLeftPressed: navigateTo(currentIndex - 1)
|
||||||
|
Keys.onRightPressed: navigateTo(currentIndex + 1)
|
||||||
|
|
||||||
Item
|
Item
|
||||||
{
|
{
|
||||||
|
|
|
@ -24,6 +24,11 @@ Component
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
width: maximumWidth
|
width: maximumWidth
|
||||||
|
|
||||||
|
// Enable keyboard navigation. NOTE: This is done here so that we can also potentially
|
||||||
|
// forward to the queue items in the future. (Deleting selected print job, etc.)
|
||||||
|
Keys.forwardTo: carousel
|
||||||
|
Component.onCompleted: forceActiveFocus()
|
||||||
|
|
||||||
UM.I18nCatalog
|
UM.I18nCatalog
|
||||||
{
|
{
|
||||||
|
@ -59,7 +64,9 @@ Component
|
||||||
}
|
}
|
||||||
width: parent.width
|
width: parent.width
|
||||||
height: 264 * screenScaleFactor // TODO: Theme!
|
height: 264 * screenScaleFactor // TODO: Theme!
|
||||||
MonitorCarousel {}
|
MonitorCarousel {
|
||||||
|
id: carousel
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
MonitorQueue
|
MonitorQueue
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue