diff options
| author | bobzel <zzzman@gmail.com> | 2025-03-25 22:58:35 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2025-03-25 22:58:35 -0400 |
| commit | 9e0f2fc211f4e12cfe6c6cdb3b113de5af2dbfe6 (patch) | |
| tree | ba1bf73d4edb294d86db9b919cc299c471e29c4a /src/client/views/collections/CollectionSubView.tsx | |
| parent | 29a1fe16297c99ddbed7974b7c602294da9a311d (diff) | |
fixed sizing and background of collection filter button. fixed exception in getDescription for text labels.
Diffstat (limited to 'src/client/views/collections/CollectionSubView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionSubView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionSubView.tsx b/src/client/views/collections/CollectionSubView.tsx index 7d487fed8..bdc3864cc 100644 --- a/src/client/views/collections/CollectionSubView.tsx +++ b/src/client/views/collections/CollectionSubView.tsx @@ -589,7 +589,7 @@ export function CollectionSubView<X>() { /** * How much the content of the collection is being scaled based on its nesting and its fit-to-width settings */ - @computed get contentScaling() { return this.ScreenToLocalBoxXf().Scale; } // prettier-ignore + @computed get contentScaling() { return this.ScreenToLocalBoxXf().Scale * (!this._props.fitWidth?.(this.Document) ? this._props.NativeDimScaling?.()||1: 1); } // prettier-ignore /** * The maximum size a UI widget can be in collection coordinates based on not wanting the widget to visually obscure too much of the collection * This takes the desired screen space size and converts into collection coordinates. It then returns the smaller of the converted |
