Use Tapped event instead of PointerReleased

This commit is contained in:
Paul Rouget 2019-10-14 09:07:32 +02:00
parent eee2c895f4
commit 010bc0036d
4 changed files with 8 additions and 8 deletions

View file

@ -82,7 +82,7 @@ void App::OnActivated(IActivatedEventArgs const &args) {
}
auto page = rootFrame.Content().try_as<BrowserPage>();
page->LoadServoURI(protocolActivatedEventArgs.Uri());
// If Servo was opened as a result of clicking on a servo:// URL,
// If Servo was opened as a result of clicking on a fxr:// URL,
// we activate transient mode.
page->SetTransientMode(!isRunning);
}