diff options
| author | bob <bcz@cs.brown.edu> | 2019-08-23 16:47:49 -0400 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2019-08-23 16:47:49 -0400 |
| commit | 538187907421057212eca1eadbe07c8b79705d1d (patch) | |
| tree | c8cc1a2852948634a9bda95d829480f411f9f735 /src/client/views/DocumentDecorations.tsx | |
| parent | da192a9f580174e3b452079026e70d5c08d8a90f (diff) | |
fixed text scrolling issues.
Diffstat (limited to 'src/client/views/DocumentDecorations.tsx')
| -rw-r--r-- | src/client/views/DocumentDecorations.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/DocumentDecorations.tsx b/src/client/views/DocumentDecorations.tsx index a28088032..2c5940467 100644 --- a/src/client/views/DocumentDecorations.tsx +++ b/src/client/views/DocumentDecorations.tsx @@ -695,7 +695,7 @@ export class DocumentDecorations extends React.Component<{}, { value: string }> if (!canPush) return (null); let published = Doc.GetProto(this.targetDoc)[GoogleRef] !== undefined; if (!published) { - this.targetDoc.autoHeight = true; + // this.targetDoc.autoHeight = true; } let icon: IconProp = published ? (this.pushIcon as any) : cloud; return ( |
