Skip to content

Commit

Permalink
Fix #9316 (CEF title crashed MTA)
Browse files Browse the repository at this point in the history
  • Loading branch information
jushar committed Sep 11, 2016
1 parent ee9b735 commit 7823ea1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Client/core/Webbrowser/CWebView.cpp
Expand Up @@ -304,6 +304,9 @@ bool CWebView::SetAudioVolume ( float fVolume )

void CWebView::GetSourceCode ( const std::function<void( const std::string& code )>& callback )
{
if (!m_pWebView)
return;

class MyStringVisitor : public CefStringVisitor
{
private:
Expand Down

0 comments on commit 7823ea1

Please sign in to comment.