diff --git a/src/Files.Uwp/Helpers/UIHelpers.cs b/src/Files.Uwp/Helpers/UIHelpers.cs index 10cc865b1792..48cd7231b31b 100644 --- a/src/Files.Uwp/Helpers/UIHelpers.cs +++ b/src/Files.Uwp/Helpers/UIHelpers.cs @@ -104,27 +104,7 @@ private static async Task> LoadSidebarIconResources() Constants.ImageRes.Folder }, 32); - const string shell32 = @"C:\Windows\System32\shell32.dll"; - var shell32List = await UIHelpers.LoadSelectedIconsAsync(shell32, new List() { - Constants.Shell32.QuickAccess - }, 32); - - if (shell32List != null && imageResList != null) - { - return imageResList.Concat(shell32List); - } - else if (shell32List != null && imageResList == null) - { - return shell32List; - } - else if (shell32List == null && imageResList != null) - { - return imageResList; - } - else - { - return null; - } + return imageResList; } } } \ No newline at end of file