diff --git a/app/components-react/obs/ObsForm.tsx b/app/components-react/obs/ObsForm.tsx
index 280c7e767a8a..52b5aacf714c 100644
--- a/app/components-react/obs/ObsForm.tsx
+++ b/app/components-react/obs/ObsForm.tsx
@@ -332,6 +332,21 @@ const ObsInput = forwardRef<{}, IObsInputProps>((p, ref) => {
/>
);
+ case 'OBS_PROPERTY_FLOAT':
+ // eslint-disable-next-line no-case-declarations
+ const floatVal = p.value as IObsNumberInputValue;
+
+ return (
+
+ );
+
default:
return Unknown input type {type};
}
diff --git a/app/components-react/shared/DisplaySelector.tsx b/app/components-react/shared/DisplaySelector.tsx
index bcd6cdf79ca9..6803c0926aa3 100644
--- a/app/components-react/shared/DisplaySelector.tsx
+++ b/app/components-react/shared/DisplaySelector.tsx
@@ -118,6 +118,7 @@ export default function DisplaySelector(p: IDisplaySelectorProps) {
style={p?.style}
direction="horizontal"
gapsize={0}
+ nowrap
/>
);
}
diff --git a/app/i18n/en-US/transitions.json b/app/i18n/en-US/transitions.json
index 6847cb4ff772..d47f6d117c37 100644
--- a/app/i18n/en-US/transitions.json
+++ b/app/i18n/en-US/transitions.json
@@ -29,5 +29,7 @@
"Edit": "Edit",
"Live": "Live",
"Transitions": "Transitions",
- "Connections": "Connections"
+ "Connections": "Connections",
+ "Softness": "Softness",
+ "Invert": "Invert"
}