MicrosoftEdge / WebView2Samples

Microsoft Edge WebView2 samples
863 stars 466 forks source link

Fix Downloads button #136

Closed krschau closed 2 years ago

krschau commented 2 years ago

"Toggle Downloads Button" doesn't bring up the button. Because the HWND isn't initialized to nullptr, it doesn't get created later because it contains a junk address, and we only create the actual HWND if it is null. By initializing to nullptr, the menu option will show the button properly.