Skip to content

Commit dc44986

Browse files
committedMar 21, 2025
Merge branch 'master' into mw_migrate_video_realm
2 parents bf26d78 + 9264155 commit dc44986

File tree

117 files changed

+4445
-3352
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

117 files changed

+4445
-3352
lines changed
 

‎app/components-react/editor/elements/mixer/GLVolmeters.tsx

+3-6
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ import { assertIsDefined, getDefined } from 'util/properties-type-guards';
1111
// Configuration
1212
const CHANNEL_HEIGHT = 3;
1313
const SPACE_BETWEEN_CHANNELS = 2;
14+
// When height of audio mixer elements changes, these paddings values also should be updated
1415
const PADDING_TOP = 39;
15-
const PADDING_BOTTOM = 49;
16+
const PADDING_BOTTOM = 57;
1617
const PEAK_WIDTH = 4;
1718
const PEAK_HOLD_CYCLES = 100;
1819
const WARNING_LEVEL = -20;
@@ -375,11 +376,7 @@ class GLVolmetersController {
375376
offsetTop += PADDING_TOP;
376377
const volmeter = this.subscriptions[sourceId];
377378
this.drawVolmeterWebgl(volmeter, offsetTop);
378-
379-
offsetTop +=
380-
CHANNEL_HEIGHT * volmeter.channelsCount +
381-
SPACE_BETWEEN_CHANNELS * (volmeter.channelsCount - 1) +
382-
PADDING_BOTTOM;
379+
offsetTop += PADDING_BOTTOM;
383380
});
384381
}
385382

‎app/components-react/highlighter/ClipPreview.m.less

+1
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@
110110
background-color: #00000070;
111111
border-radius: 4px;
112112
color: white;
113+
font-size: 14px;
113114
}
114115

115116
.flame-hypescore-wrapper {

0 commit comments

Comments
 (0)