diff options
author | monikahedman <monika_hedman@brown.edu> | 2019-07-19 16:33:19 -0400 |
---|---|---|
committer | monikahedman <monika_hedman@brown.edu> | 2019-07-19 16:33:19 -0400 |
commit | 0191d5dfb07b6e50e5bda4523b79ff9769159541 (patch) | |
tree | 2f888e67beda9edb8c0396b84547adc096588d1c /src | |
parent | 0c7a6d755c3394a027309c5469d170834e2de787 (diff) |
changed min
Diffstat (limited to 'src')
-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 60dcf06cd..8e63ea4c3 100644 --- a/src/client/views/DocumentDecorations.tsx +++ b/src/client/views/DocumentDecorations.tsx @@ -339,7 +339,7 @@ export class DocumentDecorations extends React.Component<{}, { value: string }> document.addEventListener("pointerup", this.onRadiusUp); } if (!this._isMoving) { - SelectionManager.SelectedDocuments().map(dv => dv.props.Document.borderRounding = Doc.GetProto(dv.props.Document).borderRounding = `${Math.min(100, 0)}%`); + SelectionManager.SelectedDocuments().map(dv => dv.props.Document.borderRounding = Doc.GetProto(dv.props.Document).borderRounding = `0%`); } } |