Skip to content

Commit

Permalink
Fix dragging window with dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
Kesomannen committed May 30, 2024
1 parent 8f0f802 commit 488cd39
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,13 @@

### Fixed

- Improved startup time by not parsing config files
- Moving the window while a dialog is open
- Improve startup time by not parsing config files
- "steam_exe_path pref not found" error when opening settings
- Config sliders with large ranges causing performance issues or freezing
- Zoom factor not being applied when reopening the app
- Open log file button
- Modpack icon resizing outputting an incorrect PNG
- Modpack export creating an incorrect PNG

## 0.4.1 (2024-05-23)

Expand Down
1 change: 1 addition & 0 deletions src/lib/components/Popup.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
<Dialog.Root
bind:open
closeOnEscape={canClose && confirmClose === undefined}
closeOnOutsideClick={canClose && confirmClose === undefined}
onOutsideClick={close}
>
<Dialog.Portal>
Expand Down
6 changes: 3 additions & 3 deletions src/lib/import/ImportR2Flow.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@

{#if loading}
<div
class="inset-0 absolute z-50 flex flex-col gap-3 items-center justify-center bg-black/60"
class="inset-0 absolute z-50 flex flex-col gap-4 items-center justify-center bg-black/60"
transition:fade={{ duration: 50 }}
>
<Icon icon="mdi:loading" class="text-6xl text-slate-400 animate-spin" />
<div class="text-lg font-bold text-slate-400">{loadingText}</div>
<Icon icon="mdi:loading" class="text-4xl text-slate-300 animate-spin" />
<div class="text-slate-300">{loadingText}</div>
</div>
{/if}

Expand Down
2 changes: 1 addition & 1 deletion thunderstore.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ repository = "https://thunderstore.io"
[package]
name = "GaleModManager"
namespace = "Kesomannen"
description = "A modern and lightweight mod manager for many games on Thunderstore. Read install instructions in the README!"
description = "A modern and lightweight mod manager for many games on Thunderstore."
websiteUrl = "https://github.com/Kesomannen/gale"

[build]
Expand Down

0 comments on commit 488cd39

Please sign in to comment.