1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-19 23:51:23 +02:00

disable smooth scrolling in the ui demo

This commit is contained in:
Ell 2022-07-29 22:33:32 +02:00
parent 5aaba0c583
commit 02b4626996

View file

@ -69,7 +69,6 @@ namespace Demos {
// create the root panel that all the other components sit on and add it to the ui system
this.root = new Panel(Anchor.Center, new Vector2(80, 100), Vector2.Zero, false, true);
this.root.ScrollBar.SmoothScrolling = true;
// add the root to the demos' ui
this.UiRoot.AddChild(this.root);