Remove blur effect, causes too much trouble

This commit is contained in:
miruka
2019-05-11 17:51:00 -04:00
parent d82cb50e30
commit 8f965a3e72
13 changed files with 58 additions and 75 deletions

View File

@@ -1,38 +0,0 @@
import QtQuick 2.7
import QtGraphicalEffects 1.0
Item {
property bool isPageStackDescendant: true
default property alias children: rectangle.children
property alias color: rectangle.color
property alias gradient: rectangle.gradient
property alias blurRadius: fastBlur.radius
property alias border: rectangle.border
property alias radius: rectangle.radius
ShaderEffectSource {
id: effectSource
sourceItem: mainUIBackground
anchors.fill: parent
sourceRect: Qt.rect(
(isPageStackDescendant ? pageStack.x : 0) + parent.x,
(isPageStackDescendant ? pageStack.y : 0) + parent.y,
width,
height
)
}
FastBlur {
id: fastBlur
anchors.fill: effectSource
source: effectSource
radius: rectangle.color == "#00000000" ? 0 : 8
}
Rectangle {
id: rectangle
anchors.fill: parent
color: HStyle.sidePane.background
}
}

View File

@@ -0,0 +1,6 @@
import QtQuick 2.7
Rectangle {
id: rectangle
color: HStyle.sidePane.background
}

View File

@@ -1,6 +1,6 @@
import QtQuick 2.7
HGlassRectangle {
HRectangle {
property real widthForHeight: 0.75
property int baseHeight: 300
property int startScalingUpAboveHeight: 1080

View File

@@ -57,6 +57,10 @@ QtObject {
}
readonly property QtObject chat: QtObject {
readonly property QtObject selectViewBar: QtObject {
property color background: colors.background1
}
readonly property QtObject roomHeader: QtObject {
property color background: colors.background1
}