拉伸动作类型提示

pull/466/MERGE
ChenX 5 years ago
parent 3431d19548
commit d4011c6776

@ -272,14 +272,14 @@ export class TempalteActionDialog extends React.Component<ITempalteActionDialogP
if (isStretchAction)
{
let keyRes = await app.Editor.GetKeyWords({
Msg: "是否使用比例盒子?",
Msg: "拉伸动作类型:",
KeyWordList: [
{ key: "1", msg: "" },
{ key: "2", msg: "" },
{ key: "1", msg: "夹点" },
{ key: "2", msg: "拉伸" },
],
Default: "1"
});
act = await AddStretchAction(this.props.store.Template, keyRes.StringResult === "1");
act = await AddStretchAction(this.props.store.Template, keyRes.StringResult === "2");
}
else
act = await AddFilletAction(this.props.store.Template);

Loading…
Cancel
Save