The evaluator code in the Info Tip works, but it shows partial code. I'm not sure which version this started happening, I just remember that it didn't happen in v13.6.
{!=picwidth <= 1440=}{thumbnail}
{!=picwidth > 1440=}{thumbnail:1:1440}
The evaluator code in the Info Tip works, but it shows partial code. I'm not sure which version this started happening, I just remember that it didn't happen in v13.6.
{!=picwidth <= 1440=}{thumbnail}
{!=picwidth > 1440=}{thumbnail:1:1440}
You’re specifying the start of the (potentially) hidden block but not the end.
Got it, thanks.
{!=picwidth <= 1440=}{!}{thumbnail}
{!=picwidth > 1440=}{!}{thumbnail:1:1440}
Now you have blocks hiding things, but there’s nothing inside the blocks. The things you want to make conditional are outside the blocks and will always shown.
(There’s only ever one thumbnail shown in a tooltip, I think, which is why you won’t see two. But it won’t always be the one you wanted.)
I fixed it yesterday and it seems to be working.
{!=picwidth <= 1440=}{thumbnail:1:{=picwidth=}}{!}
{!=picwidth > 1440=}{thumbnail:1:1440}{!}
Something to note is that if you haven't increased your max thumbnail size then specifying 1440 won't make the thumbnails that large; they'll be limited to the thumbnail size.
And if you have increased the max thumbnail size to something that big, it's going to use a lot of memory (and disk space for the cache, or rather very few images will fit in the cache unless it's also made much larger).
The preview pane is better if you want to see an image at a large size.
I have set max_thumbnail_size
to 1440 in the advanced options, which I guess is enough.
The SSD has a large capacity and is very fast, so there doesn't seem to be any need to worry about caching.
That will probably cause extreme memory usage when in thumbnails mode.