1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-02-17 11:18:36 +01:00

Fixed reset button bug

This commit is contained in:
Nayam Amarshe 2022-09-19 22:39:27 +05:30
parent b8ee88ebb3
commit 40a69cea68
3 changed files with 4 additions and 2 deletions

View File

@ -103,7 +103,8 @@
"AppImage",
"flatpak"
],
"category": "Graphics;2DGraphics;RasterGraphics;ImageProcessing;"
"category": "Graphics;2DGraphics;RasterGraphics;ImageProcessing;",
"icon": "main/build/icon.png"
},
"win": {
"publish": [

View File

@ -238,7 +238,8 @@ const Home = () => {
return (
<div className="flex h-screen w-screen flex-row overflow-hidden bg-[#1d1c23]">
<div className="flex h-screen w-96 flex-col bg-[#26222c]">
{imagePath.length > 0 && (
{((!batchMode && imagePath.length > 0) ||
(batchMode && batchFolderPath.length > 0)) && (
<ResetButton resetImagePaths={resetImagePaths} />
)}
{/* HEADER */}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 MiB