Browse Source

REPORT-96107 8.0和11.0.2能双开,8.0和11.0.14不能双开--调整

release/11.0
John.Ying-应志浩 1 year ago
parent
commit
7a9d957377
  1. 14
      designer-base/src/main/java/com/fr/design/utils/DesignUtils.java

14
designer-base/src/main/java/com/fr/design/utils/DesignUtils.java

@ -69,9 +69,6 @@ public class DesignUtils {
private static Integer port;
private static final String TURE = "true";
private static final String DEBUG = "debug";
private static boolean started = false;
@ -84,11 +81,7 @@ public class DesignUtils {
public synchronized static int getPort() {
if (port == null) {
if (ComparatorUtils.equals(TURE, System.getProperty(DEBUG))) {
setPort(DesignerPort.getInstance().getDebugMessagePort());
} else {
setPort(DesignerPort.getInstance().getMessagePort());
}
setPort(DesignerPort.getInstance().getMessagePort());
}
return port;
}
@ -230,7 +223,7 @@ public class DesignUtils {
@Override
public void run() {
DesignerStartupContext context = DesignerStartupContext.getInstance();
// 如果在启动页展示中
if (DesignerStartupUtil.openTemplateIfOnWaiting(f)) {
return;
@ -240,7 +233,7 @@ public class DesignUtils {
// 之前就有这样的问题
return;
}
// 打开模板
DesignerContext.getDesignerFrame().openTemplate(new FileFILE(f));
}
@ -493,6 +486,7 @@ public class DesignUtils {
/**
* 获取设计器可用字体
*
* @return
*/
public static String[] getAvailableFontFamilyNames4Report() {

Loading…
Cancel
Save