Skip to content

Commit

Permalink
Improved display of timeline.
Browse files Browse the repository at this point in the history
  • Loading branch information
ggarra13 committed Mar 9, 2024
1 parent 3ef0ea6 commit 2e0b0b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/tlTimelineUI/TimelineItem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -381,10 +381,10 @@ namespace tl
y + std::max(labelSizeHint.h, durationSizeHint.h),
sizeHint.w,
sizeHint.h));
transitionH = sizeHint.h + durationSizeHint.h;
transitionH = sizeHint.h; // + durationSizeHint.h;
}

y += transitionH;
y += labelSizeHint.h + transitionH;

}

Expand Down

0 comments on commit 2e0b0b4

Please sign in to comment.