Skip to content

Commit

Permalink
fix: errors when running from packaged build (#3547)
Browse files Browse the repository at this point in the history
  • Loading branch information
ImmutableJeffrey committed Jan 24, 2025
1 parent 2452064 commit 40ea1f9
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,14 @@ class FImmutablePluginManagerInternal
public:
FImmutablePluginManagerInternal()
{
#if WITH_EDITOR
#if ENGINE_MAJOR_VERSION <= 4
FImmutablePluginManagerModule::EnablePlugin(TEXT("BLUI"));
FImmutablePluginManagerModule::DisablePlugin(TEXT("WebBrowserWidget"));
#else
FImmutablePluginManagerModule::DisablePlugin(TEXT("BLUI"));
FImmutablePluginManagerModule::EnablePlugin(TEXT("WebBrowserWidget"));
#endif
#endif
}
};
Expand Down

0 comments on commit 40ea1f9

Please sign in to comment.