diff --git a/addOns/automation/CHANGELOG.md b/addOns/automation/CHANGELOG.md index 89d7427e3c7..d113268536c 100644 --- a/addOns/automation/CHANGELOG.md +++ b/addOns/automation/CHANGELOG.md @@ -4,6 +4,9 @@ All notable changes to this add-on will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## Unreleased +### Added +- Show column control in the Automation tab to allow to show/hide columns and auto resize them (`Pack All Columns`). + ### Fixed - Save context. diff --git a/addOns/automation/src/main/java/org/zaproxy/addon/automation/gui/AutomationPanel.java b/addOns/automation/src/main/java/org/zaproxy/addon/automation/gui/AutomationPanel.java index 6de2c7ce9dc..03da990cfed 100644 --- a/addOns/automation/src/main/java/org/zaproxy/addon/automation/gui/AutomationPanel.java +++ b/addOns/automation/src/main/java/org/zaproxy/addon/automation/gui/AutomationPanel.java @@ -630,6 +630,7 @@ private JScrollPane getPlanScrollpane() { if (planScrollpane == null) { planScrollpane = new JScrollPane(); tree = new JXTreeTable(); + tree.setColumnControlVisible(true); tree.setTreeTableModel(getTreeModel()); tree.setTreeCellRenderer(new PlanTreeNodeCellRenderer()); planScrollpane.setViewportView(tree);