stash icon indicating copy to clipboard operation
stash copied to clipboard

[Feature] Configuration to select displayed tabs in Scene page

Open S3L3CT3DLoves opened this issue 1 year ago • 2 comments

Is your feature request related to a problem? Please describe. The page to view a scene is getting more tabs, most of them are just clutter to me, and cause me to misclick often.

Describe the solution you'd like Similar to the ability to enable/disable Movies/Images/... could we have a menu configuration to enable/disable tabs in the Scene page ? For example, I would like to hide the Markers, Filters, History tabs, I never use them...

S3L3CT3DLoves avatar Jun 03 '24 14:06 S3L3CT3DLoves

Custom CSS

.scene-tabs {
    [data-rb-event-key=scene-markers-panel],
    [data-rb-event-key=scene-history-panel],
    [data-rb-event-key=scene-video-filter-panel] {
        display: none;
    } 
}

echo6ix avatar Jun 25 '24 19:06 echo6ix

That works, but isn't configurable, so to hide/show a tab you would need to go and change your CSS. I've built it as a JS plugin, so for my personal need I'm covered. But I still think this would be a valuable feature to have for all users of Stash.

S3L3CT3DLoves avatar Jul 04 '24 09:07 S3L3CT3DLoves