Found it. For this to be done you have to override the method
public void registerAdditionalActions(@NotNull DefaultActionGroup leftToolbar,@NotNull DefaultActionGroup topToolbar,@NotNull DefaultActionGroup settings)
in the XDebugProcess class. In my case I only wanted to activate the STEP OVER and SHOW EXECUTION POINTS buttons in the top toolbar and I wanted to remove the PAUSE button from the left toolbar.
Found it. For this to be done you have to override the method
in the XDebugProcess class. In my case I only wanted to activate the STEP OVER and SHOW EXECUTION POINTS buttons in the top toolbar and I wanted to remove the PAUSE button from the left toolbar.
nice workaround, thanks!