From f5ad22fcfb331d524404c160b0180efe833a9dfb Mon Sep 17 00:00:00 2001 From: miruka Date: Tue, 1 Sep 2020 13:29:27 -0400 Subject: [PATCH] EventDelegate: fix separationSpacing indentation --- src/gui/Pages/Chat/Timeline/EventDelegate.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/gui/Pages/Chat/Timeline/EventDelegate.qml b/src/gui/Pages/Chat/Timeline/EventDelegate.qml index 91a97ea2..d23a5e90 100644 --- a/src/gui/Pages/Chat/Timeline/EventDelegate.qml +++ b/src/gui/Pages/Chat/Timeline/EventDelegate.qml @@ -40,10 +40,10 @@ HColumnLayout { Qt.ArrowCursor readonly property int separationSpacing: - dayBreak ? theme.spacing * 4 : - talkBreak ? theme.spacing * 6 : - combine ? theme.spacing / (compact ? 4 : 2) : - theme.spacing * (compact ? 1 : 2) + dayBreak ? theme.spacing * 4 : + talkBreak ? theme.spacing * 6 : + combine ? theme.spacing / (compact ? 4 : 2) : + theme.spacing * (compact ? 1 : 2) readonly property alias eventContent: eventContent