stable-diffusion-webui
stable-diffusion-webui copied to clipboard
[Feature Request]: Sticky results pane
trafficstars
Is there an existing issue for this?
- [X] I have searched the existing issues and checked the recent builds/commits
What would your feature do ?
Allow for you to always see your image while working Make better use of space
Proposed workflow
Once the top of #img2img_results or #txt3img_resultsdivs hit the top edge of the browser, set position to sticky (or any preferred method of sticking)
Additional information
I'm working with the ControlNet extension and since I have to scroll to work with the extension, I can't see the art while I'm adjusting the settings.
Here you can see the empty space:

You can add it to your user.css
#img2img_results, #txt2img_results, #extras_results {
position: -webkit-sticky;
position: sticky;
top: 0;
}