You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've duplicated this on multiple Windows 10 machines and also other developer and client pcs. The problem does not happen on the one Windows 7 machine I have. It happens in both cef 39.0.02 and the current 53.0.0. I even created a brand new empty C# winform .net 4.6.1 app so it's not any of our other code. All I did in the empty winform app was declare a form1 class level private variable
private ChromiumWebBrowser _browser;
and in the form load event, new the browser and open a site
_browser = new ChromiumWebBrowser("www.amazon.com");
_browser.Dock = DockStyle.Fill;
this.Controls.Add(_browser);
_browser.Focus();
App starts, everything works, but if I just press the alt key all by itself, the whole app freezes and can even be hard to kill.
NO - but in your TestApp you have a top level menu (external to browser) that is being activated by the alt key, but our app does not have any external menu, just a fully dock filled browser and the app's menu is in the browser.
Are you doing something special internally to connect the alt key with an external menu?
The text was updated successfully, but these errors were encountered:
I've duplicated this on multiple Windows 10 machines and also other developer and client pcs. The problem does not happen on the one Windows 7 machine I have. It happens in both cef 39.0.02 and the current 53.0.0. I even created a brand new empty C# winform .net 4.6.1 app so it's not any of our other code. All I did in the empty winform app was declare a form1 class level private variable
private ChromiumWebBrowser _browser;
and in the form load event, new the browser and open a site
App starts, everything works, but if I just press the alt key all by itself, the whole app freezes and can even be hard to kill.
Updated ticket with template
What version of the product are you using?
What architecture x86 or x64?
On what operating system?
Are you using WinForms, WPF or OffScreen?
What steps will reproduce the problem?
What is the expected output? What do you see instead?
Does this problem also occur in the Cef TestApp from http://cefbuilds.com?
Are you doing something special internally to connect the alt key with an external menu?
The text was updated successfully, but these errors were encountered: