aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/PropertiesView.tsx
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2020-12-11 12:25:06 -0500
committerbobzel <zzzman@gmail.com>2020-12-11 12:25:06 -0500
commit6346a318634f6d4ebe561a871905982d748bf43e (patch)
treea5294401b392547364727d816ac71465bf7c1ff6 /src/client/views/PropertiesView.tsx
parent7a9d8f1e87f6f05433bbe4eab9fad85c3a07fa5a (diff)
converted all style sheet properties to enums.
Diffstat (limited to 'src/client/views/PropertiesView.tsx')
-rw-r--r--src/client/views/PropertiesView.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/PropertiesView.tsx b/src/client/views/PropertiesView.tsx
index 03e0a35ec..eb7df0248 100644
--- a/src/client/views/PropertiesView.tsx
+++ b/src/client/views/PropertiesView.tsx
@@ -29,6 +29,7 @@ import { PropertiesDocContextSelector } from "./PropertiesDocContextSelector";
import "./PropertiesView.scss";
import { CollectionViewType } from "./collections/CollectionView";
import { DocumentViewProps, StyleProviderFunc } from "./nodes/DocumentView";
+import { DefaultStyleProvider } from "./StyleProvider";
const higflyout = require("@hig/flyout");
export const { anchorPoints } = higflyout;
export const Flyout = higflyout.default;
@@ -269,7 +270,7 @@ export class PropertiesView extends React.Component<PropertiesViewProps> {
DataDoc={this.dataDoc}
renderDepth={1}
rootSelected={returnFalse}
- styleProvider={this.props.styleProvider}
+ styleProvider={DefaultStyleProvider}
fitToBox={true}
freezeDimensions={true}
dontCenter={"y"}