I need to hide the part of the header that has transform orientation, snapping etc. buttons using python script.
bpy.context.space_data.show_region_tool_header = False hides the entire header, but I need to keep showing Menu and Tool Settings.
Does anyone know how to do this?

space_view3d.pyby an addon removing the lines temporary: Rearranging elements of a panel or re-define the draw method of the header. – p2or Sep 10 '19 at 18:40C.area.header_text_set("string")and you can also pass an empty string of course... Cheers! – p2or Sep 18 '19 at 17:47