aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/NativeWindow.qml
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2018-01-10 23:50:06 -0500
committerKen Moore <ken@ixsystems.com>2018-01-10 23:50:06 -0500
commit27f1a7177b54f6ec4177ddb11804025740b745a7 (patch)
treeac5b8183e5cec9b31231b90a81eb25ef00fc89fd /src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/NativeWindow.qml
parentCompleted resizing on the QML Window Frame, cosmetic improvements, and settin... (diff)
downloadlumina-27f1a7177b54f6ec4177ddb11804025740b745a7.tar.gz
lumina-27f1a7177b54f6ec4177ddb11804025740b745a7.tar.bz2
lumina-27f1a7177b54f6ec4177ddb11804025740b745a7.zip
Get the window compositing/painting routine finished up with a seamless image provider system.
Diffstat (limited to 'src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/NativeWindow.qml')
-rw-r--r--src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/NativeWindow.qml1
1 files changed, 1 insertions, 0 deletions
diff --git a/src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/NativeWindow.qml b/src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/NativeWindow.qml
index 36853cc5..74c3f025 100644
--- a/src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/NativeWindow.qml
+++ b/src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/NativeWindow.qml
@@ -172,6 +172,7 @@ Rectangle {
Image {
id: frameContents
+ cache: false
source: windowFrame.object.winImage
anchors.top: titleBar.bottom
anchors.bottom: parent.bottom
bgstack15