Pārlūkot izejas kodu

fixed merge issue

Charlie Kindel 5 gadi atpakaļ
vecāks
revīzija
c9b7e60f09
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      UICatalog/Scenarios/ComputedLayout.cs

+ 1 - 1
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)];
 			};