Bit more prettier
This commit is contained in:
parent
92acadc245
commit
f0f36c44bd
3 changed files with 10 additions and 10 deletions
|
@ -154,7 +154,7 @@ $number-of-channels: 3;
|
|||
margin: 0;
|
||||
float: left;
|
||||
padding: 0 10px;
|
||||
border-right: 3px solid white;
|
||||
border-right: 3px solid white;
|
||||
}
|
||||
|
||||
&.live {
|
||||
|
|
|
@ -48,7 +48,7 @@ export function ProModeTab() {
|
|||
Reset trim when loading a new file
|
||||
</label>
|
||||
</div>
|
||||
<hr/>
|
||||
<hr />
|
||||
<h2>Metering</h2>
|
||||
<p>Turn down these options if suffering from performance issues.</p>
|
||||
<div className="form-check">
|
||||
|
@ -66,9 +66,7 @@ export function ProModeTab() {
|
|||
)
|
||||
}
|
||||
/>
|
||||
<label className="form-check-label">
|
||||
Enable meters per channel
|
||||
</label>
|
||||
<label className="form-check-label">Enable meters per channel</label>
|
||||
</div>
|
||||
<div className="form-check">
|
||||
<input
|
||||
|
@ -85,9 +83,7 @@ export function ProModeTab() {
|
|||
)
|
||||
}
|
||||
/>
|
||||
<label className="form-check-label">
|
||||
Use stereo metering
|
||||
</label>
|
||||
<label className="form-check-label">Use stereo metering</label>
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
|
|
|
@ -67,8 +67,12 @@ export function Player({ id }: { id: number }) {
|
|||
)
|
||||
);
|
||||
const proMode = useSelector((state: RootState) => state.settings.proMode);
|
||||
const vuEnabled = useSelector((state: RootState) => state.settings.channelVUs);
|
||||
const vuStereo = useSelector((state: RootState) => state.settings.channelVUsStereo);
|
||||
const vuEnabled = useSelector(
|
||||
(state: RootState) => state.settings.channelVUs
|
||||
);
|
||||
const vuStereo = useSelector(
|
||||
(state: RootState) => state.settings.channelVUsStereo
|
||||
);
|
||||
const dispatch = useDispatch();
|
||||
|
||||
const VUsource = (id: number) => {
|
||||
|
|
Loading…
Reference in a new issue