From 5cfee38329d8459fb93e05321083a4a02b9d37d0 Mon Sep 17 00:00:00 2001 From: Filippo Scognamiglio Date: Tue, 30 Sep 2014 16:33:22 +0200 Subject: [PATCH] Bloom effect is now updated manually as the others. --- app/qml/PreprocessedTerminal.qml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/qml/PreprocessedTerminal.qml b/app/qml/PreprocessedTerminal.qml index a009476..0c0d033 100644 --- a/app/qml/PreprocessedTerminal.qml +++ b/app/qml/PreprocessedTerminal.qml @@ -322,9 +322,15 @@ Item{ active: mBloom != 0 asynchronous: true sourceComponent: ShaderEffectSource{ + id: _bloomEffectSource sourceItem: bloomEffectLoader.item hideSource: true + live: false smooth: true + Connections{ + target: kterminalSource + onSourceUpdate: _bloomEffectSource.scheduleUpdate(); + } } }