Skip to content

Commit

Permalink
[4319] Rename "Hide/Show Tool Section" to "Show/Hide"
Browse files Browse the repository at this point in the history
Bug: #4319
Signed-off-by: Axel RICHARD <[email protected]>
  • Loading branch information
AxelRICHARD committed Dec 16, 2024
1 parent 030ade4 commit 228b178
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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

0 comments on commit 228b178

Please sign in to comment.