Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -736,5 +736,10 @@ public void convertLegacyXml(Node transformNode) throws HopException {
if (StringUtils.isNotEmpty(sequenceName)) {
this.fields.setSequenceFrom(sequenceName);
}
Node lastUpdateFieldNode = XmlHandler.getSubNode(transformNode, "last_update_field");
String lastUpdateField = XmlHandler.getNodeValue(lastUpdateFieldNode);
if (StringUtils.isNotEmpty(lastUpdateField)) {
this.fields.getReturnFields().setLastUpdateField(lastUpdateField);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3478,6 +3478,18 @@ public void toggleFileExplorerPanel() {
} else {
sash.setMaximizedControl(tabFolderWrapper);
}

// Shift the focus away from the perspective icon onto the active graph.
//
IHopFileTypeHandler activeHandler = getActiveFileTypeHandler();
if (activeHandler != null) {
if (activeHandler instanceof HopGuiPipelineGraph graph) {
graph.setFocus();
}
if (activeHandler instanceof HopGuiWorkflowGraph graph) {
graph.setFocus();
}
}
}

/** Split the editor to show two files side by side. If already split, this is a no-op. */
Expand Down
Loading