diff options
Diffstat (limited to 'ChatGroup.ui.qml')
| -rw-r--r-- | ChatGroup.ui.qml | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/ChatGroup.ui.qml b/ChatGroup.ui.qml index e3165fa..bb16852 100644 --- a/ChatGroup.ui.qml +++ b/ChatGroup.ui.qml @@ -1,7 +1,7 @@ import QtQuick import QtQuick.Controls import QtQuick.Layouts -import Qt5Compat.GraphicalEffects +import QtQuick.Effects Page { property string titleText: qsTr("Bootstrap Community") @@ -72,14 +72,19 @@ Page { } layer { enabled: true - effect: OpacityMask { - maskSource: Rectangle { - width: 26 - height: 26 - radius: 13 - } + effect: MultiEffect { + maskEnabled: true + maskSource: maskRectangle } } + Rectangle { + id: maskRectangle + width: 26 + height: 26 + radius: 13 + layer.enabled: true + visible: false + } } } } |