ToolBar empty space

Hi,

There is an empty space between the button and the border of the ToolBar (I draw purple lines in the top picture to show the empty borders). I want to limit this space to 1 pixel if the DockingFrame theme does not specifying it, I found ToolbarDockableDisplayer class that should be close to the solution. I want to do this cause one of our team member is very annoying with this kind of pixels

Do you have any clue to set this inset ?

Thank you.

The ToolbarDockStation itself is responsible for the border, and the size can be changed like this:

control.putProperty( ToolbarDockStation.SIDE_GAP, 1 );```

It works, thank you