mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
IDEA-105472 (Snappy is not available on 32-bit Mac)
This commit is contained in:
@@ -45,7 +45,8 @@ import java.util.List;
|
||||
public class StartupUtil {
|
||||
@NonNls public static final String NO_SPLASH = "nosplash";
|
||||
|
||||
public static final boolean NO_SNAPPY = SystemProperties.getBooleanProperty("idea.no.snappy", false);
|
||||
public static final boolean NO_SNAPPY = SystemProperties.getBooleanProperty("idea.no.snappy", false) ||
|
||||
SystemInfo.isMac && SystemInfo.is32Bit; // todo[maxim] drop once available
|
||||
|
||||
static boolean isHeadless;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user