disable ESC key and sound for migration window

This commit is contained in:
Infi
2024-04-23 04:20:17 +02:00
parent 8ab450aa3e
commit 6452f937b5
3 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>1.22.0</Version>
<Version>1.22.1</Version>
<TargetFramework>net8.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
-1
View File
@@ -16,7 +16,6 @@ using Dalamud.Interface.Internal;
using Dalamud.Interface.Style;
using Dalamud.Interface.Utility;
using Dalamud.Interface.Utility.Raii;
using Dalamud.Interface.Utility.Table;
using Dalamud.Interface.Windowing;
using Dalamud.Memory;
using FFXIVClientStructs.FFXIV.Client.UI;
@@ -25,6 +25,9 @@ internal class LegacyMessageImporterWindow : Window
Flags = ImGuiWindowFlags.NoResize;
Size = new Vector2(500, 400);
RespectCloseHotkey = false;
DisableWindowSounds = true;
_store = plugin.MessageManager.Store;
Eligibility = LegacyMessageImporterEligibility.CheckEligibility();
LogAndNotify();