diff options
| author | bobzel <zzzman@gmail.com> | 2023-02-21 09:53:18 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-02-21 09:53:18 -0500 |
| commit | f303131b40fac4909ab2730b369ef3bdb8e00b1d (patch) | |
| tree | f4cf6758f97e6ae15af8c91f5ca1edf29e50278a /src/client/views/topbar | |
| parent | 32f5040c44dc302e3dd53cecd9be4cd51a474d3f (diff) | |
fixed explore mode zooming. don't show doc decorations until you move outside of the document, fixed dragging radius button over webbox to still get pointer events. fixed selection text in coments for web boxes.. fixed setting default background color for notes. fixed mode buttons to trigger click behavior before double click behavior. fixed events on nested text boxes that are linkAnchors (like text quotes in sidebar comments),
Diffstat (limited to 'src/client/views/topbar')
| -rw-r--r-- | src/client/views/topbar/TopBar.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/topbar/TopBar.tsx b/src/client/views/topbar/TopBar.tsx index 7e728306c..f2e9be61d 100644 --- a/src/client/views/topbar/TopBar.tsx +++ b/src/client/views/topbar/TopBar.tsx @@ -54,7 +54,7 @@ export class TopBar extends React.Component { <span style={{ color: Colors.LIGHT_BLUE, fontWeight: 500 }}>dash</span> </div> )} - {Doc.ActiveDashboard && !Doc.noviceMode && ( + {Doc.ActiveDashboard && ( <Button text="Explore" tooltip="Browsing mode for directly navigating to documents" |
