aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2023-09-08 11:45:12 -0400
committerbobzel <zzzman@gmail.com>2023-09-08 11:45:12 -0400
commitfdaf11b65b0a4b729c2c08fff24a6802ebba6674 (patch)
treef7ad13dd3e81c41c7d7d45483355e5b6ee1e7236 /src
parent7bc82b283bc7aa11a163c95607a6e192439bd601 (diff)
fixed tab title flickering when hovering over a sidebar hyperlink when tab isn't selected.
Diffstat (limited to 'src')
-rw-r--r--src/client/views/collections/TabDocView.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/TabDocView.tsx b/src/client/views/collections/TabDocView.tsx
index 0044a2832..9ea1ed2de 100644
--- a/src/client/views/collections/TabDocView.tsx
+++ b/src/client/views/collections/TabDocView.tsx
@@ -475,7 +475,7 @@ export class TabDocView extends React.Component<TabDocViewProps> {
style={{
fontFamily: Doc.UserDoc().renderStyle === 'comic' ? 'Comic Sans MS' : undefined,
}}
- onPointerEnter={action(() => (this._hovering = true))}
+ onPointerOver={action(() => (this._hovering = true))}
onPointerLeave={action(() => (this._hovering = false))}
onDragOver={action(() => (this._hovering = true))}
onDragLeave={action(() => (this._hovering = false))}