diff --git a/lama_cleaner/app/src/Editor.tsx b/lama_cleaner/app/src/Editor.tsx index 2dc2bf5..d535aef 100644 --- a/lama_cleaner/app/src/Editor.tsx +++ b/lama_cleaner/app/src/Editor.tsx @@ -659,7 +659,7 @@ export default function Editor(props: EditorProps) { className="absolute bg-black backdrop-blur backdrop-filter bg-opacity-10 rounded-xl" style={{ height: '58px', - width: '700px', + width: '600px', zIndex: -1, marginLeft: '-1px', }} diff --git a/lama_cleaner/app/src/components/SizeSelector.tsx b/lama_cleaner/app/src/components/SizeSelector.tsx index 48ba854..0f9151b 100644 --- a/lama_cleaner/app/src/components/SizeSelector.tsx +++ b/lama_cleaner/app/src/components/SizeSelector.tsx @@ -16,7 +16,7 @@ export default function SizeSelector(props: SizeSelectorProps) { const getSizeShowName = (size: string) => { if (size === 'Original') { - return `${originalWidth}x${originalHeight}(${size})` + return `${originalWidth}x${originalHeight}` } const length: number = parseInt(size, 10) const longSide: number = @@ -36,7 +36,7 @@ export default function SizeSelector(props: SizeSelectorProps) { } return ( -
+