fix: fix reaction direction in compact mode for current user

This commit is contained in:
Jonathan Rainville 2020-09-22 11:20:12 -04:00 committed by Iuri Matias
parent 49849edbac
commit a8d42e5e1e
1 changed files with 2 additions and 2 deletions

View File

@ -55,9 +55,9 @@ Item {
width: 8 width: 8
height: 8 height: 8
anchors.top: parent.top anchors.top: parent.top
anchors.left: !isCurrentUser ? parent.left : undefined anchors.left: !isCurrentUser || appSettings.compactMode ? parent.left : undefined
anchors.leftMargin: 0 anchors.leftMargin: 0
anchors.right: !isCurrentUser ? undefined : parent.right anchors.right: !isCurrentUser || appSettings.compactMode ? undefined : parent.right
anchors.rightMargin: 0 anchors.rightMargin: 0
radius: 2 radius: 2
z: -1 z: -1