From 257250a7e44ce15a1a1bd78e476bd2337227830d Mon Sep 17 00:00:00 2001 From: Michael Hoffman Date: Wed, 10 May 2023 11:48:01 -0700 Subject: [PATCH] Clarify "New available version" dialog (#186) * rewrite dialog sentence * add 'Runtime' --- SampleApps/WebView2APISample/AppWindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SampleApps/WebView2APISample/AppWindow.cpp b/SampleApps/WebView2APISample/AppWindow.cpp index 786eef43..5024afae 100644 --- a/SampleApps/WebView2APISample/AppWindow.cpp +++ b/SampleApps/WebView2APISample/AppWindow.cpp @@ -1804,10 +1804,10 @@ void AppWindow::RegisterEventHandlers() [this] { std::wstring message = - L"We detected there is a new version for the browser."; + L"A new version of the Microsoft Edge WebView2 Runtime is available on this machine. "; if (m_webView) { - message += L"Do you want to restart the app? \n\n"; + message += L"Do you want to restart the WebView2APISample app? \n\n"; message += L"Click No if you only want to re-create the webviews. \n"; message += L"Click Cancel for no action. \n";