Browse Source

REPORT-80483 10.0linux设计器图表空数据弹窗点不开

final/10.0
pengda 2 years ago
parent
commit
73700ad578
  1. 9
      designer-base/src/main/java/com/fr/design/os/impl/SupportOSImpl.java

9
designer-base/src/main/java/com/fr/design/os/impl/SupportOSImpl.java

@ -148,10 +148,15 @@ public enum SupportOSImpl implements SupportOS {
},
OLD_STYLE_CHOOSER {
@Override
public boolean support() {
return (OperatingSystem.isLinux() && Arch.getArch() == Arch.ARM) || MACOS_12_VERSION_ADAPTER.support();
boolean javafxExist = true;
try {
Class.forName("javafx.stage.FileChooser");
} catch (ClassNotFoundException e) {
javafxExist = false;
}
return !javafxExist || (OperatingSystem.isLinux() && Arch.getArch() == Arch.ARM) || MACOS_12_VERSION_ADAPTER.support();
}
},

Loading…
Cancel
Save