diff --git a/source/carla_host.py b/source/carla_host.py index 7dc420f0b..5e3041b0c 100644 --- a/source/carla_host.py +++ b/source/carla_host.py @@ -531,9 +531,8 @@ class HostWindow(QMainWindow): gCarla.host.set_engine_option(ENGINE_OPTION_FORCE_STEREO, forceStereo, "") gCarla.host.set_engine_option(ENGINE_OPTION_UIS_ALWAYS_ON_TOP, uisAlwaysOnTop, "") - if not gCarla.isPlugin: - gCarla.host.set_engine_option(ENGINE_OPTION_PREFER_PLUGIN_BRIDGES, preferPluginBridges, "") - gCarla.host.set_engine_option(ENGINE_OPTION_PREFER_UI_BRIDGES, preferUiBridges, "") + gCarla.host.set_engine_option(ENGINE_OPTION_PREFER_PLUGIN_BRIDGES, preferPluginBridges, "") + gCarla.host.set_engine_option(ENGINE_OPTION_PREFER_UI_BRIDGES, preferUiBridges, "") gCarla.host.set_engine_option(ENGINE_OPTION_MAX_PARAMETERS, maxParameters, "") gCarla.host.set_engine_option(ENGINE_OPTION_UI_BRIDGES_TIMEOUT, uiBridgesTimeout, "")