Skip to content

Commit

Permalink
Fix ProgressRing Automation Name Property (#6828)
Browse files Browse the repository at this point in the history
* Add space on automation properties name

* Add missing L on string
  • Loading branch information
bkudiess authored Mar 21, 2022
1 parent 0926753 commit 1697d94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/ProgressRing/ProgressRingAutomationPeer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ winrt::hstring ProgressRingAutomationPeer::GetNameCore()
{
if (progressRing.IsIndeterminate())
{
return winrt::hstring{ ResourceAccessor::GetLocalizedStringResource(SR_ProgressRingIndeterminateStatus) + name };
return winrt::hstring{ ResourceAccessor::GetLocalizedStringResource(SR_ProgressRingIndeterminateStatus) + L" " + name };
}
else
{
Expand Down

0 comments on commit 1697d94

Please sign in to comment.