Less vertical spacing between msgs in compact mode

This commit is contained in:
miruka 2020-03-22 13:20:16 -04:00
parent ce7c986e5b
commit d29b393ad2

View File

@ -58,8 +58,8 @@ HColumnLayout {
readonly property int separationSpacing: readonly property int separationSpacing:
dayBreak ? theme.spacing * 4 : dayBreak ? theme.spacing * 4 :
talkBreak ? theme.spacing * 6 : talkBreak ? theme.spacing * 6 :
combine ? theme.spacing / 2 : combine ? theme.spacing / (compact ? 4 : 2) :
theme.spacing * 2 theme.spacing * (compact ? 1 : 2)
// Needed because of eventList's MouseArea which steals the // Needed because of eventList's MouseArea which steals the
// HSelectableLabel's MouseArea hover events // HSelectableLabel's MouseArea hover events