mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-26 13:51:40 +00:00
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:
parent
e281cfc93e
commit
2abd39fa97
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue