Skip to content

Commit

Permalink
fix: other modals will no longer show below the update modal
Browse files Browse the repository at this point in the history
  • Loading branch information
Tormak9970 committed May 1, 2024
1 parent 26169c1 commit a220e80
Showing 1 changed file with 43 additions and 41 deletions.
84 changes: 43 additions & 41 deletions src/windows/main/Main.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -138,50 +138,52 @@
/>
</Titlebar>
<div class="content">
{#if $showDialogModal}
<DialogModal />
{/if}
{#if $showSteamPathModal}
<SteamPathModal />
{/if}
{#if $showGameSearchModal}
<GameSearchModal />
{/if}
{#if $showGridModal}
<GridPreviewModal />
{/if}
{#if $showBatchApplyProgress}
<BatchApplyProgressModal />
{/if}
{#if $showBatchApplyModal}
<BatchApplyModal />
{/if}
{#if $showLogoPositionModal}
<LogoPositionModal />
{/if}
{#if $showManualGamesModal}
<ManualGamesModal />
{/if}
{#if $showCleanGridsModal}
<CleanGridsModal />
{/if}
{#if $showSettingsModal}
<SettingsModal />
{/if}
{#if $showCleanConflictDialog}
<CleanConflictDialog />
{/if}
{#if $showUpdateModal}
<UpdateModal />
{/if}
{#if $showInfoModal}
<InfoModal />
{/if}
{#if $showCurrentGridsModal}
<CurrentGridsModal />
{/if}
{#if $showUpdateTilesModal}
<UpdateTilesModal />
{#if !$showUpdateModal}
{#if $showDialogModal}
<DialogModal />
{/if}
{#if $showSteamPathModal}
<SteamPathModal />
{/if}
{#if $showGameSearchModal}
<GameSearchModal />
{/if}
{#if $showGridModal}
<GridPreviewModal />
{/if}
{#if $showBatchApplyProgress}
<BatchApplyProgressModal />
{/if}
{#if $showBatchApplyModal}
<BatchApplyModal />
{/if}
{#if $showLogoPositionModal}
<LogoPositionModal />
{/if}
{#if $showManualGamesModal}
<ManualGamesModal />
{/if}
{#if $showCleanGridsModal}
<CleanGridsModal />
{/if}
{#if $showSettingsModal}
<SettingsModal />
{/if}
{#if $showCleanConflictDialog}
<CleanConflictDialog />
{/if}
{#if $showInfoModal}
<InfoModal />
{/if}
{#if $showCurrentGridsModal}
<CurrentGridsModal />
{/if}
{#if $showUpdateTilesModal}
<UpdateTilesModal />
{/if}
{/if}
<Splitpanes dblClickSplitter={false} on:resized={handlePanelResize}>
<Options />
Expand Down

0 comments on commit a220e80

Please sign in to comment.