Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Innerloop Solution #3697

Merged
merged 7 commits into from
Nov 25, 2020
2 changes: 2 additions & 0 deletions dev/dll/SharedHelpers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -565,6 +565,7 @@ winrt::IconElement SharedHelpers::MakeIconElementFrom(winrt::IconSource const& i
}
return bitmapIcon;
}
#ifdef IMAGEICON_INCLUDED
else if (auto imageIconSource = iconSource.try_as<winrt::ImageIconSource>())
{
winrt::ImageIcon imageIcon;
Expand All @@ -578,6 +579,7 @@ winrt::IconElement SharedHelpers::MakeIconElementFrom(winrt::IconSource const& i
}
return imageIcon;
}
#endif
else if (auto pathIconSource = iconSource.try_as<winrt::PathIconSource>())
{
winrt::PathIcon pathIcon;
Expand Down