|
|
|
@ -213,7 +213,6 @@ public class MainDesigner extends BaseDesigner {
|
|
|
|
|
ArrayList<ShortCut> shortCuts = new ArrayList<ShortCut>(); |
|
|
|
|
// shortCuts.add(new NewWorkBookXAction());
|
|
|
|
|
shortCuts.add(new NewWorkBookAction()); |
|
|
|
|
shortCuts.add(new NewPolyReportAction()); |
|
|
|
|
try { |
|
|
|
|
if (DesignModuleFactory.getNewFormAction() != null) { |
|
|
|
|
shortCuts.add((ShortCut) DesignModuleFactory.getNewFormAction().newInstance()); |
|
|
|
@ -221,6 +220,7 @@ public class MainDesigner extends BaseDesigner {
|
|
|
|
|
} catch (Exception e) { |
|
|
|
|
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
|
|
|
|
} |
|
|
|
|
shortCuts.add(new NewPolyReportAction()); |
|
|
|
|
return shortCuts.toArray(new ShortCut[0]); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|