1 files changed, 3 insertions, 3 deletions
diff --git a/resources/qml/ForwardCompleter.qml b/resources/qml/ForwardCompleter.qml
index 7ad26491..0174e0f6 100644
--- a/resources/qml/ForwardCompleter.qml
+++ b/resources/qml/ForwardCompleter.qml
@@ -18,15 +18,15 @@ Popup {
leftPadding: 10
modal: true
+
+ // Workaround palettes not inheriting for popups
+ palette: timelineRoot.palette
parent: Overlay.overlay
rightPadding: 10
width: timelineRoot.width * 0.8
x: Math.round(parent.width / 2 - width / 2)
y: Math.round(parent.height / 4)
- // Workaround palettes not inheriting for popups
- palette: timelineRoot.palette
-
Overlay.modal: Rectangle {
color: Qt.rgba(palette.window.r, palette.window.g, palette.window.b, 0.7)
}
|