Texture Browser: fixed a problem where cycling through the width and height jumped to 196 instead of 192. Fixes #613

This commit is contained in:
biwa 2021-09-04 08:58:00 +02:00
parent e281cfc93e
commit 2abd39fa97

View file

@ -117,7 +117,7 @@ namespace CodeImp.DoomBuilder.Controls
items = new List<ImageBrowserItem>();
//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;