1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-02-12 09:03:00 +01:00

Remove lens_size

This commit is contained in:
Nayam Amarshe 2024-12-20 09:34:51 +05:30
parent 7cec8b7ef8
commit 31ddf84110

View File

@ -114,24 +114,6 @@ const MoreOptionsDrawer = ({
}}
/>
</div>
<div className="flex flex-col gap-2">
<p className="text-sm font-medium">
{t("APP.MORE_OPTIONS_DRAWER.LENS_SIZE_TITLE")} (
{lensSize / 10})
</p>
<input
type="range"
min="20"
max="400"
step={10}
className="range range-md"
value={lensSize}
onChange={(e) => {
setLensSize(parseInt(e.target.value));
}}
/>
</div>
</>
)}
</div>