On mine, an oversized picture results in a scroll bar along the bottom. Do you see a scroll bar?
The size settings appear to be established by class .tc-modal with attributes:
position: fixed;
top: 2em;
left: 25%;
width: 50%;
So the image should be given half of your screen space. After that another attribute overflow-y: auto creates a scrollbar (at least on my desktop).
You could create a tiddler tagged $:/tags/Stylesheet with :
.tc-modal {
position: fixed;
top: 2em;
left: 0%;
width: 100%;
}
to give the image the full screen real-estate.
Good luck,
Mark