mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-26 14:32:01 +00:00
9cc361c40a
Closes #3710
18 lines
467 B
QML
18 lines
467 B
QML
import QtQuick 2.3
|
|
|
|
// This rectangle's only job is to mask the corner to make it less rounded... yep
|
|
Rectangle {
|
|
color: parent.color
|
|
width: 18
|
|
height: 18
|
|
property bool isCurrentUser: false
|
|
anchors.bottom: parent.bottom
|
|
anchors.bottomMargin: 0
|
|
anchors.left: !isCurrentUser ? parent.left : undefined
|
|
anchors.leftMargin: 0
|
|
anchors.right: !isCurrentUser ? undefined : parent.right
|
|
anchors.rightMargin: 0
|
|
radius: 4
|
|
z: -1
|
|
}
|