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:
authorMark <mark.suurmond@gmail.com>2018-07-02 17:50:56 +0300
committerGitHub <noreply@github.com>2018-07-02 17:50:56 +0300
commit1f51d83fa755521bee5a9c179d6622758ce27b1c (patch)
tree6fdf3879130c6379f8926854f8ff3563956605b1 /resources/qml
parentf3d92ecdbfe31f2932fd5cfaaf0e0f9e53c494cd (diff)
parent756288bbb49daa05dc1e487470106f98749d840f (diff)
Merge pull request #3982 from fieldOfView/fix_dark_theme_artefact
Fix a bright line/gap between the viewport and sidebar due to rounding
Diffstat (limited to 'resources/qml')
-rw-r--r--resources/qml/Cura.qml2
1 files changed, 2 insertions, 0 deletions
diff --git a/resources/qml/Cura.qml b/resources/qml/Cura.qml
index 80c2d27d9e..692a6fc259 100644
--- a/resources/qml/Cura.qml
+++ b/resources/qml/Cura.qml
@@ -20,6 +20,8 @@ UM.MainWindow
viewportRect: Qt.rect(0, 0, (base.width - sidebar.width) / base.width, 1.0)
property bool showPrintMonitor: false
+ backgroundColor: UM.Theme.getColor("viewport_background")
+
// This connection is here to support legacy printer output devices that use the showPrintMonitor signal on Application to switch to the monitor stage
// It should be phased out in newer plugin versions.
Connections