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/PropertiesView.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/PropertiesView.tsx')
-rw-r--r-- | src/client/views/PropertiesView.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/PropertiesView.tsx b/src/client/views/PropertiesView.tsx index b03c1a64e..e4ca3daeb 100644 --- a/src/client/views/PropertiesView.tsx +++ b/src/client/views/PropertiesView.tsx @@ -1471,7 +1471,8 @@ export class PropertiesView extends ObservableReactComponent<PropertiesViewProps <option value={OpenWhere.addRight}>Opening in new right pane</option> <option value={OpenWhere.replaceLeft}>Replacing left tab</option> <option value={OpenWhere.replaceRight}>Replacing right tab</option> - <option value={OpenWhere.lightbox}>Opening in lightbox</option> + <option value={OpenWhere.lightboxAlways}>Opening in lightbox always</option> + <option value={OpenWhere.lightbox}>Opening in lightbox if not visible</option> <option value={OpenWhere.add}>Opening in new tab</option> <option value={OpenWhere.replace}>Replacing current tab</option> <option value={OpenWhere.inParent}>Opening in same collection</option> |