diff options
author | bobzel <zzzman@gmail.com> | 2020-09-12 16:22:09 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-09-12 16:22:09 -0400 |
commit | 93b72ab7818e48592e9d42d092fa91b4ebedd49e (patch) | |
tree | 97851751feea4b29854b6f0c2af1dd5d14df6d93 /src/client/views/PreviewCursor.tsx | |
parent | d82e04a294a9af164de0c1e46b864a69422e65cc (diff) |
fixed sidebar views in text boxes to work in treeview outlines. fixed context menus to select docs again. fixed linkAnchors to show up when isLinkButton is true but doc is selcted. changed nudging to be ignore in annotation overlays
Diffstat (limited to 'src/client/views/PreviewCursor.tsx')
-rw-r--r-- | src/client/views/PreviewCursor.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/PreviewCursor.tsx b/src/client/views/PreviewCursor.tsx index 0a4d46c1f..7575aa430 100644 --- a/src/client/views/PreviewCursor.tsx +++ b/src/client/views/PreviewCursor.tsx @@ -22,7 +22,7 @@ export class PreviewCursor extends React.Component<{}> { static _getTransform: () => Transform; static _addDocument: (doc: Doc | Doc[]) => void; static _addLiveTextDoc: (doc: Doc) => void; - static _nudge: (x: number, y: number) => boolean; + static _nudge?: (x: number, y: number) => boolean; @observable static _clickPoint = [0, 0]; @observable public static Visible = false; constructor(props: any) { |