Skip to content

Commit

Permalink
Merge pull request #5095 from thc202/automation/column-control
Browse files Browse the repository at this point in the history
  • Loading branch information
kingthorin authored Nov 15, 2023
2 parents 70f826a + a98a9bd commit 1a7bad5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions addOns/automation/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 1a7bad5

Please sign in to comment.