Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[4319] Rename "Hide/Show Tool Section" to "Show/Hide" #4320

Merged
merged 1 commit into from
Dec 16, 2024
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
2 changes: 1 addition & 1 deletion CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ This is now fixed
- https://github.com/eclipse-sirius/sirius-web/issues/4261[#4261] [core] Enable image cache
- https://github.com/eclipse-sirius/sirius-web/issues/4225[#4225] [emf] Add support for localized enumeration literals in EMF property forms
- https://github.com/eclipse-sirius/sirius-web/issues/4227[#4227] [emf] Add support for custom numeric and boolean types in property forms

- https://github.com/eclipse-sirius/sirius-web/issues/4319[#4319] [view] Rename "Hide/Show Tool Section" tool section to "Show/Hide".


== v2024.11.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public OutsideLabelDescription createDefaultOutsideLabelDescription() {

public NodeToolSection createDefaultHideRevealNodeToolSection() {
NodeToolSection nodeToolSection = DiagramFactory.eINSTANCE.createNodeToolSection();
nodeToolSection.setName("Hide/Show Tool Section");
nodeToolSection.setName("Show/Hide");
nodeToolSection.getNodeTools().add(this.createDefaultHideNodeTool());
nodeToolSection.getNodeTools().add(this.createDefaultHideAllChildrenNodeTool());
nodeToolSection.getNodeTools().add(this.createDefaultRevealAllChildrenNodeTool());
Expand Down Expand Up @@ -215,7 +215,7 @@ public NodeTool createDefaultRevealChildrenWithValueNodeTool() {

public EdgeToolSection createDefaultHideRevealEdgeToolSection() {
EdgeToolSection edgeToolSection = DiagramFactory.eINSTANCE.createEdgeToolSection();
edgeToolSection.setName("Hide/Show Tool Section");
edgeToolSection.setName("Show/Hide");
edgeToolSection.getNodeTools().add(this.createDefaultHideEdgeTool());
return edgeToolSection;
}
Expand Down
Loading