diff --git a/app/components-react/windows/GuestCamProperties.tsx b/app/components-react/windows/GuestCamProperties.tsx index f0e022f27399..e46ceb9ac141 100644 --- a/app/components-react/windows/GuestCamProperties.tsx +++ b/app/components-react/windows/GuestCamProperties.tsx @@ -80,91 +80,7 @@ export default function GuestCamProperties() { return ( - - -
-
-

{$t('Source: %{sourceName}', { sourceName: source?.name })}

-
- - -
-
- `${(v * 100).toFixed(0)}%`} - style={{ width: '100%', margin: '10px 0' }} - /> - - - - } - /> - - -
-
- {/* Weird double div is to avoid display blocking border radius */} -
- {!!guestInfo && produceOk && } - {!guestInfo && ( -
- -
{$t('Waiting for guest to join')}
-
- )} -
-
-
-
+

@@ -209,6 +125,113 @@ export default function GuestCamProperties() { /> )} + +
+
+

{$t('Source: %{sourceName}', { sourceName: source?.name })}

+
+
+ + `${(v * 100).toFixed(0)}%`} + style={{ width: '100%', margin: '10px 0' }} + /> +
+
+
+ + + + +
+
+ + +
+
+
+
+
+ {/* Weird double div is to avoid display blocking border radius */} +
+ {!!guestInfo && produceOk && } + {!guestInfo && ( +
+ +
{$t('Waiting for guest to join')}
+
+ )} +
+
+
+
{ settings: obsInput.settings, volume: obsInput.volume, channel: source.channel, - muted: obsInput.muted, + muted: source.muted, filters: { items: filters, }, diff --git a/app/services/sources/sources.ts b/app/services/sources/sources.ts index 96efa38fc3d0..791502dcab24 100644 --- a/app/services/sources/sources.ts +++ b/app/services/sources/sources.ts @@ -806,8 +806,8 @@ export class SourcesService extends StatefulService { title: $t('Collab Cam Properties', { sourceName: propertiesName }), queryParams: { sourceId: source.sourceId }, size: { - width: 800, - height: 670, + width: 850, + height: 650, }, }); }