mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
Take a more generic approach to safe areas for the SimulationView
Re-implements layer slider positioning CURA-6853
This commit is contained in:
parent
87bbf32597
commit
664ed4a6a6
2 changed files with 21 additions and 7 deletions
|
@ -11,11 +11,14 @@ import Cura 1.0 as Cura
|
|||
|
||||
Item
|
||||
{
|
||||
// An Item whose bounds are guaranteed to be safe for overlays to be placed.
|
||||
// Defaults to parent, ie. the entire available area
|
||||
// eg. the layer slider will not be placed in this area.
|
||||
property var safeArea: parent
|
||||
|
||||
|
||||
property bool isSimulationPlaying: false
|
||||
// By default, the layer slider can extend to the entire height of the parent
|
||||
// A parent may bind this property to indicate the bottom of a safe area
|
||||
// for the Layer slider
|
||||
property var layerSliderSafeYMax: parent.height
|
||||
readonly property var layerSliderSafeYMax: safeArea.y + safeArea.height
|
||||
|
||||
visible: UM.SimulationView.layerActivity && CuraApplication.platformActivity
|
||||
|
||||
|
@ -221,6 +224,7 @@ Item
|
|||
// Make sure the slider handlers show the correct value after switching views
|
||||
Component.onCompleted:
|
||||
{
|
||||
print("safeArea: " + safeArea, "layerSliderSafeYMax", layerSliderSafeYMax)
|
||||
layerSlider.setLowerValue(UM.SimulationView.minimumLayer)
|
||||
layerSlider.setUpperValue(UM.SimulationView.currentLayer)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue