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

Clarify "New available version" dialog #186

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions SampleApps/WebView2APISample/AppWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 Microsoft Edge is available on this machine. ";
mikehoffms marked this conversation as resolved.
Show resolved Hide resolved
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";
Expand Down