From 6de6078931fec887ffb35b6ea0f4b458165edaee Mon Sep 17 00:00:00 2001 From: Charlie Kindel Date: Thu, 21 May 2020 09:58:04 -0600 Subject: [PATCH] fixed merge issue --- UICatalog/Scenarios/ComputedLayout.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UICatalog/Scenarios/ComputedLayout.cs b/UICatalog/Scenarios/ComputedLayout.cs index ad5c346b2..77f3d514b 100644 --- a/UICatalog/Scenarios/ComputedLayout.cs +++ b/UICatalog/Scenarios/ComputedLayout.cs @@ -28,7 +28,7 @@ namespace UICatalog { ColorScheme = Colors.Error }; - Application.OnResized += () => { + Application.Resized += (sender, a) => { horizontalRuler.Text = rule.Repeat ((int)Math.Ceiling ((double)(horizontalRuler.Bounds.Width) / (double)rule.Length)) [0..(horizontalRuler.Bounds.Width)]; };