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
Titles are not shown , when opening a link in the pop up window. Do you have know about this issue or am I missing something?. The title in popup window is working in the chromium cefclient...Also noticed that the pop up window icon is not same as Web view window icon. currently popup icon shows some default icon.
The text was updated successfully, but these errors were encountered:
Here is the fix I made in the clientAdapter.cpp file in the eventhandler OnTitleChange. Please let me know,if the fix looks OK for displaying popup titles.
void ClientAdapter::OnTitleChange(CefRefPtr browser, const CefString& title)
{
HWND lHwnd = browser->GetWindowHandle();
if(_browserHwnd == lHwnd)
{
_browserControl->Title = toClr(title);
}
else
{
SetWindowText(lHwnd, std::wstring(title).c_str());
}
}
actually it looks like ClientAdapter::OnTitleChange() always updates the title of the parent window, regardless of which popup window's title actually changed. will investigate.
Titles are not shown , when opening a link in the pop up window. Do you have know about this issue or am I missing something?. The title in popup window is working in the chromium cefclient...Also noticed that the pop up window icon is not same as Web view window icon. currently popup icon shows some default icon.
The text was updated successfully, but these errors were encountered: