diff --git a/app/src/common/chromium/com/igalia/wolvic/browser/api/impl/RuntimeImpl.java b/app/src/common/chromium/com/igalia/wolvic/browser/api/impl/RuntimeImpl.java index 10b867e5bc..d83db4fae0 100644 --- a/app/src/common/chromium/com/igalia/wolvic/browser/api/impl/RuntimeImpl.java +++ b/app/src/common/chromium/com/igalia/wolvic/browser/api/impl/RuntimeImpl.java @@ -196,7 +196,7 @@ private void initBrowserProcess(Context context) { // window.outerWidth/Height -- so the panel value shrinks the video. The view (surface) // bounds are the correct "window" bounds for us (the pre-M14x behaviour). String disableFeatures = "AndroidUseCorrectWindowBounds"; - if (BuildConfig.FLAVOR_abi == "x64") + if (BuildConfig.FLAVOR_abi.equals("x64")) disableFeatures += ",Vulkan"; CommandLine.getInstance().appendSwitchWithValue("disable-features", disableFeatures);