mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 20:37:22 +01:00
disable dalamud sounds for download ui. who even though it's a good idea to add this feature to begin with.
This commit is contained in:
parent
e94a2a7565
commit
c4893551fd
2 changed files with 4 additions and 1 deletions
|
|
@ -210,6 +210,7 @@ public class PlayerDataFactory
|
||||||
if (objectKind == ObjectKind.Player)
|
if (objectKind == ObjectKind.Player)
|
||||||
{
|
{
|
||||||
previousData.MoodlesData = await _ipcManager.Moodles.GetStatusAsync(playerRelatedObject.Address).ConfigureAwait(false) ?? string.Empty;
|
previousData.MoodlesData = await _ipcManager.Moodles.GetStatusAsync(playerRelatedObject.Address).ConfigureAwait(false) ?? string.Empty;
|
||||||
|
_logger.LogDebug("Moodles is now: {moodles}", previousData.MoodlesData);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (previousData.FileReplacements.TryGetValue(objectKind, out HashSet<FileReplacement>? fileReplacements))
|
if (previousData.FileReplacements.TryGetValue(objectKind, out HashSet<FileReplacement>? fileReplacements))
|
||||||
|
|
|
||||||
|
|
@ -46,6 +46,8 @@ public class DownloadUi : WindowMediatorSubscriberBase
|
||||||
Flags |= ImGuiWindowFlags.NoDecoration;
|
Flags |= ImGuiWindowFlags.NoDecoration;
|
||||||
Flags |= ImGuiWindowFlags.NoFocusOnAppearing;
|
Flags |= ImGuiWindowFlags.NoFocusOnAppearing;
|
||||||
|
|
||||||
|
DisableWindowSounds = true;
|
||||||
|
|
||||||
ForceMainWindow = true;
|
ForceMainWindow = true;
|
||||||
|
|
||||||
IsOpen = true;
|
IsOpen = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue