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:
authorj.delarago <joeydelarago@gmail.com>2022-03-14 18:41:53 +0300
committerj.delarago <joeydelarago@gmail.com>2022-03-14 18:41:53 +0300
commit8a182b1f3f2d6ad510ee30a8a61c56ad36035e47 (patch)
tree1af6321a25b2510dcc4753b6ab0643214576601f
parentc6326eff64323b5a4ab6da6532840042f78b3884 (diff)
Workaround for windows not giving dialogs the correct width.CURA-8921
CURA-8921
-rw-r--r--resources/qml/ColorDialog.qml10
1 files changed, 3 insertions, 7 deletions
diff --git a/resources/qml/ColorDialog.qml b/resources/qml/ColorDialog.qml
index 3818ea5cb4..6877ef34b6 100644
--- a/resources/qml/ColorDialog.qml
+++ b/resources/qml/ColorDialog.qml
@@ -24,13 +24,9 @@ UM.Dialog
// In this case we would like to let the content of the dialog determine the size of the dialog
// however with the current implementation of the dialog this is not possible, so instead we calculate
// the size of the dialog ourselves.
- minimumWidth: content.width + 4 * margin
- minimumHeight:
- content.height // content height
- + buttonRow.height // button row height
- + 5 * margin // top and bottom margin and margin between buttons and content
- width: minimumWidth
- height: minimumHeight
+ // Ugly workaround for windows having overlapping elements due to incorrect dialog width
+ minimumWidth: content.width + (Qt.platform.os == "windows" ? 4 * margin : 2 * margin)
+ minimumHeight: content.height + buttonRow.height + (Qt.platform.os == "windows" ? 5 * margin : 3 * margin)
property alias color: colorInput.text
property var swatchColors: [