slider border thickness

This commit is contained in:
Santeri Nogelainen
2019-03-14 21:57:39 +02:00
parent bbf42fdd00
commit 92595e43f6
4 changed files with 40 additions and 2 deletions

View File

@ -33,6 +33,10 @@ namespace osu.Game.Skinning
case @"CursorExpand":
skin.CursorExpand = pair.Value != "0";
break;
case @"SliderBorderSize":
if (int.TryParse(pair.Value, out int size))
skin.SliderBorderSize = size;
break;
}
break;