diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2020-02-16 22:59:36 -0500 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2020-02-16 22:59:36 -0500 |
commit | ba9351bc009b6f78ca9815b481bc5643f8af96e0 (patch) | |
tree | 88edbb3abaf14d114d5dfffdd28f279a15823f6e /src/new_fields/util.ts | |
parent | 10e8681c5e1f68d7f088294f94a75859e6d39009 (diff) |
fixed warnings
Diffstat (limited to 'src/new_fields/util.ts')
-rw-r--r-- | src/new_fields/util.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/new_fields/util.ts b/src/new_fields/util.ts index ebc0a1272..6d7f6b56e 100644 --- a/src/new_fields/util.ts +++ b/src/new_fields/util.ts @@ -100,7 +100,7 @@ export function makeEditable() { _setter = _setterImpl; } -let layoutProps = ["panX", "panY", "width", "height", "nativeWidth", "nativeHeight", "fitWidth", "fitToBox", +const layoutProps = ["panX", "panY", "width", "height", "nativeWidth", "nativeHeight", "fitWidth", "fitToBox", "LODdisable", "chromeStatus", "viewType", "gridGap", "xMargin", "yMargin", "autoHeight"]; export function setter(target: any, in_prop: string | symbol | number, value: any, receiver: any): boolean { let prop = in_prop; |