We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If I trigger the Find popup and pass in a starting search term like this:
var findOptions = wv2.CoreWebView2.Environment.CreateFindOptions(); findOptions.FindTerm = "a"; wv2.CoreWebView2.Find.StartAsync(findOptions);
It takes a second or so for the previous search term to be replaced by the new one, so there's a moment where the user can still see the old term.
If you set the FindTerm to be longer (findOptions.FindTerm = "aaaaaaaaaaaaaaaaaaaaaaaaa";), the change becomes near-instantaneous.
findOptions.FindTerm = "aaaaaaaaaaaaaaaaaaaaaaaaa";
Low. My app is not very affected, or this only affects development.
Prerelease (Edge Canary/Dev/Beta)
136.0.3216.0 canary
3116.0
Winforms
Windows 11
24H2 OS Build 26100.3476
WebView2Control_CoreWebView2InitializationCompleted
this.webView2Control.CoreWebView2.Settings.AreBrowserAcceleratorKeysEnabled = false;
WebView2Control_KeyDown
if (e.KeyCode == Keys.F && Control.ModifierKeys.HasFlag(Keys.Control)) { e.Handled = true; var wv2 = (WebView2)sender; var findOptions = wv2.CoreWebView2.Environment.CreateFindOptions(); findOptions.FindTerm = "a"; wv2.CoreWebView2.Find.StartAsync(findOptions); }
FindTerm
"aaaaaaaaaaaaaaaaaaaaaaaaa"
No, issue does not reproduce in the corresponding Edge version
No, this never worked
No response
The text was updated successfully, but these errors were encountered:
chetanpandey1266
No branches or pull requests
What happened?
If I trigger the Find popup and pass in a starting search term like this:
It takes a second or so for the previous search term to be replaced by the new one, so there's a moment where the user can still see the old term.
If you set the FindTerm to be longer (
findOptions.FindTerm = "aaaaaaaaaaaaaaaaaaaaaaaaa";
), the change becomes near-instantaneous.Importance
Low. My app is not very affected, or this only affects development.
Runtime Channel
Prerelease (Edge Canary/Dev/Beta)
Runtime Version
136.0.3216.0 canary
SDK Version
3116.0
Framework
Winforms
Operating System
Windows 11
OS Version
24H2 OS Build 26100.3476
Repro steps
WebView2Control_CoreWebView2InitializationCompleted
, addthis.webView2Control.CoreWebView2.Settings.AreBrowserAcceleratorKeysEnabled = false;
WebView2Control_KeyDown
, add this code:FindTerm
longer (e.g."aaaaaaaaaaaaaaaaaaaaaaaaa"
), the change happens more quicklyRepros in Edge Browser
No, issue does not reproduce in the corresponding Edge version
Regression
No, this never worked
Last working version (if regression)
No response
The text was updated successfully, but these errors were encountered: