From 2abd39fa97099c33052e0c701e5b43398d9afb2b Mon Sep 17 00:00:00 2001 From: biwa <6475593+biwa@users.noreply.github.com> Date: Sat, 4 Sep 2021 08:58:00 +0200 Subject: [PATCH] Texture Browser: fixed a problem where cycling through the width and height jumped to 196 instead of 192. Fixes #613 --- Source/Core/Controls/ImageBrowserControl.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Controls/ImageBrowserControl.cs b/Source/Core/Controls/ImageBrowserControl.cs index 8e18029d..b7848a6d 100755 --- a/Source/Core/Controls/ImageBrowserControl.cs +++ b/Source/Core/Controls/ImageBrowserControl.cs @@ -117,7 +117,7 @@ namespace CodeImp.DoomBuilder.Controls items = new List(); //mxd - StepsList sizes = new StepsList { 4, 8, 16, 32, 48, 64, 96, 128, 196, 256, 512, 1024 }; + StepsList sizes = new StepsList { 4, 8, 16, 32, 48, 64, 96, 128, 192, 256, 512, 1024 }; filterWidth.StepValues = sizes; filterHeight.StepValues = sizes;