diff --git a/src/main/main.ts b/src/main/main.ts index 3166495..16d33f7 100644 --- a/src/main/main.ts +++ b/src/main/main.ts @@ -57,9 +57,9 @@ const createWindow = async () => { mainWindow = new BrowserWindow({ show: false, width: 1024, - minWidth: 700, + minWidth: 800, height: 728, - minHeight: 650, + minHeight: 692, icon: getAssetPath('icon.png'), webPreferences: { preload: app.isPackaged diff --git a/src/renderer/Settings.tsx b/src/renderer/Settings.tsx index b4979aa..3cd7df5 100644 --- a/src/renderer/Settings.tsx +++ b/src/renderer/Settings.tsx @@ -5,7 +5,6 @@ import { Checkbox, CircularProgress, Dialog, - DialogActions, DialogContent, DialogContentText, DialogTitle, @@ -26,7 +25,6 @@ import { CheckCircle, CloudDownload, ContentCopy, - DeleteForever, Report, SdCard, Settings as SettingsIcon, @@ -219,9 +217,6 @@ export default function Settings({ setHasAutoOpened(true); } - const [clearConfirmOpen, setClearConfirmOpen] = useState(false); - const [clearing, setClearing] = useState(false); - return ( <> + + {needUpdate && ( )} - - - - - { - setClearConfirmOpen(true); - }} - > - - - - { - setClearConfirmOpen(false); - }} - > - Clear Temp Folder? - - - This will delete all unzipped replays and dolphin comm files.DO - NOT PROCEED if you are currently playing replays. - - - - - - - );