diff --git a/platform/ui.jcef/jcef/JBCefApp.java b/platform/ui.jcef/jcef/JBCefApp.java index fa4e36b7cb2d..d2ac9dfb48f5 100644 --- a/platform/ui.jcef/jcef/JBCefApp.java +++ b/platform/ui.jcef/jcef/JBCefApp.java @@ -276,14 +276,15 @@ public final class JBCefApp { } private static boolean isSupportedImpl() { - if (SystemInfo.isLinux && !isLinuxLibcSupported()) { - return false; - } - CefDelegate delegate = getActiveDelegate(); if (delegate != null) { return delegate.isCefSupported(); } + + if (SystemInfo.isLinux && !isLinuxLibcSupported()) { + return false; + } + Function unsupported = (msg) -> { LOG.warn(msg + (!msg.contains("disabled") ? " (Use JBR bundled with the IDE)" : "")); return false;