reverted bad change

This commit is contained in:
Tig
2024-07-20 13:23:17 -06:00
parent 8a8666c724
commit 07d7bbb1f4

View File

@@ -50,6 +50,11 @@ public class Slider<T> : View
SetDefaultStyle ();
SetCommands ();
SetContentSize ();
// BUGBUG: This should not be needed - Need to ensure SetRelativeLayout gets called during EndInit
Initialized += (s, e) => { SetContentSize (); };
LayoutStarted += (s, e) => { SetContentSize (); };
}