mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-06 03:57:56 +08:00
parent
a41a5b3ad4
commit
3b30d89956
@ -110,10 +110,16 @@ const getMiddleTop = (node: MNode, parentNode: MNode, stage: StageCore | null) =
|
|||||||
|
|
||||||
export const getInitPositionStyle = (style: Record<string, any> = {}, layout: Layout) => {
|
export const getInitPositionStyle = (style: Record<string, any> = {}, layout: Layout) => {
|
||||||
if (layout === Layout.ABSOLUTE) {
|
if (layout === Layout.ABSOLUTE) {
|
||||||
return {
|
const newStyle: Record<string, any> = {
|
||||||
...style,
|
...style,
|
||||||
position: 'absolute',
|
position: 'absolute',
|
||||||
};
|
};
|
||||||
|
|
||||||
|
if (typeof newStyle.left === 'undefined' && typeof newStyle.right === 'undefined') {
|
||||||
|
newStyle.left = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
return newStyle;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (layout === Layout.RELATIVE) {
|
if (layout === Layout.RELATIVE) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user