diff options
author | bobzel <zzzman@gmail.com> | 2022-11-15 14:24:11 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2022-11-15 14:24:11 -0500 |
commit | 51a85bae74c3d8ccddb57f6063e93b237cdf1ebd (patch) | |
tree | 01f3af984eeef920284547e86583f60d76866375 /src/client/views/PropertiesButtons.tsx | |
parent | 19f317bd43a7cc8df0daf1c0642011cc8754e14b (diff) |
added playback of audio annotation on inPlace container. fixed image anchors to be marked un-rendered so link lines show up.
Diffstat (limited to 'src/client/views/PropertiesButtons.tsx')
-rw-r--r-- | src/client/views/PropertiesButtons.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/PropertiesButtons.tsx b/src/client/views/PropertiesButtons.tsx index d27848a90..656a56a15 100644 --- a/src/client/views/PropertiesButtons.tsx +++ b/src/client/views/PropertiesButtons.tsx @@ -138,7 +138,7 @@ export class PropertiesButtons extends React.Component<{}, {}> { DocUtils.MakeLink({ doc: dv.rootDoc }, { doc: menuDoc }, 'back link to container'); } DocListCast(menuDoc[Doc.LayoutFieldKey(menuDoc)]).forEach(menuItem => { - menuItem.followAllLinks = menuItem._isLinkButton = true; + menuItem.followLinkAudio = menuItem.followAllLinks = menuItem._isLinkButton = true; menuItem._followLinkLocation = 'inPlace'; }); } |