yfszzx / stable-diffusion-webui-images-browser

an images browse for stable-diffusion-webui
489 stars 235 forks source link

The buttons disappear as soon as I click First Page, no generate info or filenames display #98

Open DaveMayfield opened 1 year ago

DaveMayfield commented 1 year ago

The UI looks correct when I reload the web page, but as soon as I click any of the Page buttons all of the other buttons disappear. When I click an image there is no generate info or file name. So it does nothing more than display images right now.

x4080 commented 1 year ago

and no send to img2img etc on my side

diegomagikal commented 1 year ago

The same happens here.

Using Chrome DevTools, I noticed a CSS class hide have added to div txt2img_images_history_button_panel.

https://snipboard.io/CiYj6w.jpg

Removing this class, the buttons are shown.

https://snipboard.io/MEst0v.jpg.

Now it's just to investigate where is the code that does that...

pxnk commented 1 year ago

Using Chrome DevTools, I noticed a CSS class hide have added to div txt2img_images_history_button_panel.

I now use this Stylus custom CSS rule

#image_browser_tab_txt2img_image_browser_button_panel { display: block!important; }

Like this the txt2img etc. buttons are at least visible and usable.