mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-09 20:57:22 +02:00
[Power Rename] Select all while filter is active (#24598)
* Check if the result from find item returns a valid item and repopulate ExplorerItems() * Call all the clean and populate methods only when showRenamed is checked.
This commit is contained in:
@@ -273,6 +273,13 @@ namespace winrt::PowerRenameUI::implementation
|
|||||||
{
|
{
|
||||||
ToggleAll();
|
ToggleAll();
|
||||||
m_allSelected = !m_allSelected;
|
m_allSelected = !m_allSelected;
|
||||||
|
if (button_showRenamed().IsChecked())
|
||||||
|
{
|
||||||
|
m_explorerItems.Clear();
|
||||||
|
m_explorerItemsMap.clear();
|
||||||
|
PopulateExplorerItems();
|
||||||
|
UpdateCounts();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -738,7 +745,8 @@ namespace winrt::PowerRenameUI::implementation
|
|||||||
int id = 0;
|
int id = 0;
|
||||||
spItem->GetId(&id);
|
spItem->GetId(&id);
|
||||||
auto item = FindById(id);
|
auto item = FindById(id);
|
||||||
item.Checked(selected);
|
if (item)
|
||||||
|
item.Checked(selected);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
UpdateCounts();
|
UpdateCounts();
|
||||||
|
|||||||
Reference in New Issue
Block a user