Merge branch 'dev/feature/projects' of https://github.com/microsoft/PowerToys into dev/feature/projects

This commit is contained in:
seraphima
2024-06-19 11:17:20 +02:00
4 changed files with 22 additions and 11 deletions

View File

@@ -330,5 +330,13 @@ namespace ProjectsEditor.ViewModels
{
GC.SuppressFinalize(this);
}
internal void CloseAllPopups()
{
foreach (Project project in Projects)
{
project.IsPopupVisible = false;
}
}
}
}