|
|
|
@ -972,7 +972,7 @@ public abstract class JTemplate<T extends BaseBook, U extends BaseUndoState<?>>
|
|
|
|
|
} else if (DesignerMode.isAuthorityEditing()) { |
|
|
|
|
return new ShortCut[]{new SaveTemplateAction(this), new UndoAction(this), new RedoAction(this)}; |
|
|
|
|
} else { |
|
|
|
|
return new ShortCut[]{new SaveTemplateAction(this), new SaveAsTemplateAction(this), new BatchCompileAction(), new UndoAction(this), new RedoAction(this)}; |
|
|
|
|
return new ShortCut[]{new SaveTemplateAction(this), new SaveAsTemplateAction(this), new UndoAction(this), new RedoAction(this)}; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
@ -1409,9 +1409,7 @@ public abstract class JTemplate<T extends BaseBook, U extends BaseUndoState<?>>
|
|
|
|
|
* @return 按钮组 |
|
|
|
|
*/ |
|
|
|
|
public UIButton[] createExtraButtons() { |
|
|
|
|
UIButton[] uiButtons = new UIButton[] { |
|
|
|
|
(UIButton) new CompileAction().createToolBarComponent() |
|
|
|
|
}; |
|
|
|
|
UIButton[] uiButtons = new UIButton[0]; |
|
|
|
|
Set<DesignerFrameUpButtonProvider> providers = ExtraDesignClassManager.getInstance().getArray(DesignerFrameUpButtonProvider.XML_TAG); |
|
|
|
|
for (DesignerFrameUpButtonProvider provider : providers) { |
|
|
|
|
uiButtons = ArrayUtils.addAll(uiButtons, provider.getUpButtons(getMenuState())); |
|
|
|
|