From 02b46269968311b5fd75226160159198a3050e54 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Fri, 29 Jul 2022 22:33:32 +0200 Subject: [PATCH] disable smooth scrolling in the ui demo --- Demos/UiDemo.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Demos/UiDemo.cs b/Demos/UiDemo.cs index 1bb7b47..bc23244 100644 --- a/Demos/UiDemo.cs +++ b/Demos/UiDemo.cs @@ -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);