diff options
author | bobzel <zzzman@gmail.com> | 2024-05-10 14:05:01 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2024-05-10 14:05:01 -0400 |
commit | 4b4d77f99bd55e6de0593c3acd1cf5798ae038bf (patch) | |
tree | 0fa27b0344c4252833b9d36dbe69f172141b846e /src/client/views/LightboxView.tsx | |
parent | e12f79e188c32787b5749eba54183002f270f998 (diff) |
added an always option for OpenWhere lightbox. cleaned up/fixed making collections capable of being a lightbox.
Diffstat (limited to 'src/client/views/LightboxView.tsx')
-rw-r--r-- | src/client/views/LightboxView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/LightboxView.tsx b/src/client/views/LightboxView.tsx index 269f4fa83..7198c7f05 100644 --- a/src/client/views/LightboxView.tsx +++ b/src/client/views/LightboxView.tsx @@ -341,5 +341,5 @@ export class LightboxTourBtn extends React.Component<LightboxTourBtnProps> { // eslint-disable-next-line prefer-arrow-callback ScriptingGlobals.add(function deiconifyViewToLightbox(documentView: DocumentView) { - LightboxView.Instance.AddDocTab(documentView.Document, OpenWhere.lightbox, 'layout'); // , 0); + LightboxView.Instance.AddDocTab(documentView.Document, OpenWhere.lightboxAlways, 'layout'); // , 0); }); |