From d992fc2b4f011429fcb9947a700089bc246a4e75 Mon Sep 17 00:00:00 2001 From: Steven Kirk Date: Mon, 22 May 2023 12:49:06 +0200 Subject: [PATCH] Hide IChildIndexProvider interface method. --- src/Avalonia.Controls/Panel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Avalonia.Controls/Panel.cs b/src/Avalonia.Controls/Panel.cs index eff6603727..4705b0e9a5 100644 --- a/src/Avalonia.Controls/Panel.cs +++ b/src/Avalonia.Controls/Panel.cs @@ -213,7 +213,7 @@ namespace Avalonia.Controls } /// - public bool TryGetTotalCount(out int count) + bool IChildIndexProvider.TryGetTotalCount(out int count) { count = Children.Count; return true;