Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelle Spijker <spijker.jelle@gmail.com>2022-03-24 13:53:44 +0300
committerJelle Spijker <spijker.jelle@gmail.com>2022-03-24 13:53:44 +0300
commit3f8907d02a2d5f9b62567d18715d006e6b834885 (patch)
tree2da7ee3fe040d1af8d8de21ab68f052097721756 /plugins/USBPrinting
parent34d6a2ba29e9396cb3b9f569cfca7850ea717339 (diff)
parent0dda27094edfabf9e588a15c658a6b29b7115f9f (diff)
Merge branch 'master' into CURA-8640_PyQt6
# Conflicts: # cura/CuraApplication.py # resources/qml/Preferences/Materials/MaterialsSyncDialog.qml # resources/qml/Preferences/Materials/MaterialsView.qml
Diffstat (limited to 'plugins/USBPrinting')
-rw-r--r--plugins/USBPrinting/MonitorItem.qml6
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/USBPrinting/MonitorItem.qml b/plugins/USBPrinting/MonitorItem.qml
index c86353f814..a3c7793fb1 100644
--- a/plugins/USBPrinting/MonitorItem.qml
+++ b/plugins/USBPrinting/MonitorItem.qml
@@ -3,7 +3,6 @@
import QtQuick 2.10
import QtQuick.Controls 2.0
-import QtQuick.Layouts 1.3
import UM 1.2 as UM
import Cura 1.0 as Cura
@@ -22,7 +21,10 @@ Component
Cura.PrintMonitor
{
- anchors.fill: parent
+ anchors.top: parent.top
+ anchors.left: parent.left
+ anchors.right: parent.right
+ anchors.bottom: footerSeparator.top
}
Rectangle