Skip to content

Commit

Permalink
Adjusted clip info and margins. To test on macOS.
Browse files Browse the repository at this point in the history
  • Loading branch information
ggarra13 committed May 13, 2024
1 parent 01ee4d6 commit 7bc6cb1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions mrv2/lib/mrvEdit/mrvEditCallbacks.cpp
Expand Up @@ -2298,13 +2298,14 @@ namespace mrv

// Some constants, as Darby does not yet expose this in tlRender.
const int kTrackInfoHeight = 20 * pixels_unit;
const int kClipInfoHeight = 8 * pixels_unit;
const int kClipInfoHeight = 16 * pixels_unit;
const int kTransitionsHeight = 30;
const int kAudioGapOnlyHeight = 20;
const int kMarkerHeight = 24;
const int kMargin = 4;

const int kVideoHeight = options.thumbnailHeight;
const int kAudioHeight = options.waveformHeight;
const int kVideoHeight = options.thumbnailHeight + kMargin;
const int kAudioHeight = options.waveformHeight + kMargin;

int H = kMinEditModeH; // timeline height
if (editMode == EditMode::kTimeline)
Expand Down

0 comments on commit 7bc6cb1

Please sign in to comment.