Skip to content

Commit

Permalink
Update CEF to 119.3.1 (multitheftauto#3242)
Browse files Browse the repository at this point in the history
Re-introduce e0eedf9 along with the fix needed for this upgrade
  • Loading branch information
Lpsd authored Nov 14, 2023
1 parent bc40402 commit 877ebcd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Client/ceflauncher_DLL/CCefApp.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class CCefApp : public CefApp, public CefRenderProcessHandler
if (!node)
return;

if (node->GetType() == CefDOMNode::Type::DOM_NODE_TYPE_ELEMENT && !node->GetFormControlElementType().empty())
if (node->GetType() == CefDOMNode::Type::DOM_NODE_TYPE_ELEMENT && node->GetFormControlElementType() != CefDOMNode::FormControlType::DOM_FORM_CONTROL_TYPE_UNSUPPORTED)
{
auto message = CefProcessMessage::Create("InputFocus");
message->GetArgumentList()->SetBool(0, true);
Expand Down
4 changes: 2 additions & 2 deletions utils/buildactions/install_cef.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ local CEF_URL_PREFIX = "https://cef-builds.spotifycdn.com/cef_binary_"
local CEF_URL_SUFFIX = "_windows32_minimal.tar.bz2"

-- Change here to update CEF version
local CEF_VERSION = "118.7.1+g99817d2+chromium-118.0.5993.119"
local CEF_HASH = "389f8df36a89a68d50c91ef228a8fdae87614e5e1c41e4ccb48f054b76e54dd3"
local CEF_VERSION = "119.3.1+gf768881+chromium-119.0.6045.124"
local CEF_HASH = "59d8ead17a8cb355b0a1d2b3d57e94139ccb7fe6c33c9e7365451ee5c7e7e7f4"

function make_cef_download_url()
return CEF_URL_PREFIX..http.escapeUrlParam(CEF_VERSION)..CEF_URL_SUFFIX
Expand Down

0 comments on commit 877ebcd

Please sign in to comment.