Removing toolbars from adjoint Layouts does not work

So I’ve been trying to remove a toolbar from an AdjointLayout, but to no avail:

import holoviews as hv
import numpy as np
hv.extension('bokeh')
from bokeh.themes import Theme

hv.renderer('bokeh').theme = Theme(json={'attrs':{'Figure':dict(toolbar_location=None)}})

points = hv.Points(np.random.randn(100,2))

hv.output(points)
hv.output(points.hist(dimension=['x','y']))

Why does this not work for the adjoint layout?

(I have also tried setting toolbar=None on all the possible elements - can’t get it to work).

Thanks for filing the issue, should be fixed in 1.13.0