Skip to content

Commit

Permalink
Fix for wrong default sizing policy
Browse files Browse the repository at this point in the history
  • Loading branch information
pl0xz0rz committed Dec 31, 2023
1 parent cd2be25 commit b77a5d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RootInteractive/InteractiveDrawing/bokeh/bokehDrawSA.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def fromArray(cls, dataFrame, query, figureArray, widgetsDescription, **kwargs):
#self.Widgets = self.initWidgets(widgetString)
if isinstance(self.widgetLayout, list) or isinstance(self.widgetLayout, dict):
widgetList=processBokehLayoutArray(self.widgetLayout, self.plotArray[nFigures:], self.plotDict)
self.pAll=gridplotRow([self.figure, widgetList], sizing_mode=self.options.get('sizing_mode', 'inherit'))
self.pAll=gridplotRow([self.figure, widgetList], sizing_mode=self.options.get('sizing_mode', 'scale_width'))
self.widgetList=widgetList
#self.pAll=column([self.figure,widgetList],sizing_mode=self.options['sizing_mode'])
self.handle=show(self.pAll,notebook_handle=self.isNotebook)
Expand Down

0 comments on commit b77a5d7

Please sign in to comment.