Remove the arbitrary fucking limitations

This commit is contained in:
2026-02-10 10:14:06 +01:00
parent 8e71e335d4
commit ca003424db

View File

@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
@@ -88,9 +88,9 @@ namespace EveOPreview.Configuration.Implementation {
this.HideThumbnailsOnLostFocus = false;
this.HideThumbnailsDelay = 2; // 2 thumbnails refresh cycles (1.0 sec)
this.ThumbnailSize = new Size(384, 216);
this.ThumbnailMinimumSize = new Size(192, 108);
this.ThumbnailMaximumSize = new Size(960, 540);
this.ThumbnailSize = new Size(384, 216);
this.ThumbnailMinimumSize = new Size(1, 1);
this.ThumbnailMaximumSize = new Size(int.MaxValue, int.MaxValue);
this.EnableThumbnailSnap = true;
this.ThumbnailSnapRange = 20;