This commit is contained in:
2025-12-16 06:31:29 +09:00
parent bdfcf254a8
commit 4444a88746
32 changed files with 1204 additions and 464 deletions

View File

@@ -5,6 +5,7 @@ using Dalamud.Interface.Utility.Raii;
using LightlessSync.Services;
using LightlessSync.Services.Events;
using LightlessSync.Services.Mediator;
using LightlessSync.Utils;
using Microsoft.Extensions.Logging;
using System.Diagnostics;
using System.Globalization;
@@ -43,11 +44,9 @@ internal class EventViewerUI : WindowMediatorSubscriberBase
{
_eventAggregator = eventAggregator;
_uiSharedService = uiSharedService;
SizeConstraints = new()
{
MinimumSize = new(600, 500),
MaximumSize = new(1000, 2000)
};
WindowBuilder.For(this)
.SetSizeConstraints(new Vector2(600, 500), new Vector2(1000, 2000))
.Apply();
_filteredEvents = RecreateFilter();
}