Jumar Macato
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
2 deletions
-
src/Avalonia.Controls/Generators/TreeContainerIndex.cs
-
src/Avalonia.Controls/TreeView.cs
|
|
@ -39,7 +39,7 @@ namespace Avalonia.Controls.Generators |
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// Gets the items of currently materialized containers.
|
|
|
/// Gets the items of currently materialized containers.
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
public IEnumerable<object> Objects => _containerToItem.Values; |
|
|
public IEnumerable<object> Items => _containerToItem.Values; |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// Adds an entry to the index.
|
|
|
/// Adds an entry to the index.
|
|
|
|
|
|
@ -411,7 +411,7 @@ namespace Avalonia.Controls |
|
|
|
|
|
|
|
|
if (this.SelectionMode == SelectionMode.Multiple && Match(keymap.SelectAll)) |
|
|
if (this.SelectionMode == SelectionMode.Multiple && Match(keymap.SelectAll)) |
|
|
{ |
|
|
{ |
|
|
SelectingItemsControl.SynchronizeItems(SelectedItems, ItemContainerGenerator.Index.Objects); |
|
|
SelectingItemsControl.SynchronizeItems(SelectedItems, ItemContainerGenerator.Index.Items); |
|
|
e.Handled = true; |
|
|
e.Handled = true; |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|